英文: Golang Import (undefined: Request) 问题 我正在尝试创建一个自定义函数,将Request对象作为结果返回: func ConstructRequest(tes...
将Golang中的nil接口转换为某个指针。
英文: Convert nil interface to pointer of something in Golang? 问题 在上面的代码片段中,尝试将一个空接口转换为某个指针会导致以下错误:int...
使用Go将文件和文件夹上传到Box账户。
英文: Uploading the files and folders using Go to the box account 问题 以下是您提供的代码的翻译: 对于下面的程序,我得到了以下错误。如果...
为什么Error()优先于String()?
英文: Why does Error() have priority over String() 问题 我一直在查看Go语言的教程,但是我无法弄清楚为什么会出现这种情况。 当你有一个Stringer(...
如何确定数据库服务器或嵌入式数据库是否适合?
英文: How to detemine if database server or embedded database is appropriate 问题 Bolt是一个纯Go语言的键值存储,受到了H...
net/smtp在传输过程中是否以明文形式发送凭据?
英文: Does net/smtp send credentials in plain text? 问题 我正在查看这个例子。http://golang.org/pkg/net/smtp/#examp...
Go语言中的接口组合
英文: Composition of interfaces in Go 问题 有没有办法在Go语言中使一个接口包含另一个接口定义的方法? 例如: type BasicDatabase interfac...
如何确保计算机已连接到互联网并启动执行?
英文: How to make sure the PC is having internet and then launch exec? 问题 我有一个正在运行的应用程序,当Windows 8.1启动...
Golang – MongoDB(mgo)检索已插入的文件(BSON而不是GridFS)
英文: Golang - MongoDB (mgo) retrieve inserted file (BSON not GridFS) 问题 我是一个Golang的新手。 我正在尝试检索我插入的PDF...
通过切片访问数组(2D切片)时,遇到了意外的性能问题。
英文: Go: Unexpected performance when accessing an array through slice of slices (2D slice) 问题 我在Go语言中...
36