英文: Verifying signature of payload in Go 问题 我正在验证数据发送者的身份。我获得了以PEM格式提供的RSA公钥,并且我知道数据经过了SHA256哈希函数的处理...
Golang和AWS:部署到AWS Elastic Beanstalk不起作用
英文: Golang & AWS: Deployment to AWS Elastic Beanstalk not working 问题 我设置了一个golang的Web服务器,并使用了他们提...
在多个结构体之间重用一个函数以满足接口的要求。
英文: Reuse a function across multiple structs to satisfy an interface 问题 有没有办法在多个结构体之间使用相同的函数来满足接口? 例...
在Go运行时中,是否可以使用Python的property类来操作Datastore?
英文: Is it possible to use Python's property classes for Datastore from the Go runtime? 问题 我正在使用G...
passing array or slice into variable args function in golang
英文: passing array or slice into variable args function in golang 问题 filepath.Join方法接受一个...string参数,但...
BlueMix由于健康检查超时而无法启动。
英文: BlueMix not starting due to health check timeout 问题 我正在使用Go语言尝试使用IBM的BlueMix创建一个简单的“hello world”...
在我的程序和单元测试中无法使用相同的相对路径。
英文: Unable to use the same relative path in my program AND my unit tests 问题 在我的Go项目中,我使用一个函数来打开一个特定的...
检测JSON文件是否具有字段
英文: Detect if JSON file has field 问题 我的应用程序从配置文件中读取设置: file, _ := os.Open("config.json") c...
为什么 ‘new’ 和 ‘make’ 不是保留关键字?
英文: Why are 'new' and 'make' not reserved keywords? 问题 启用语法高亮功能后,像这个问题的答案中使用 new 作为变...
Interface/Struct "Does not implement X, Wrong type or Method, not sure why I am getting this error
英文: Interface/Struct "Does not implement X, Wrong type or Method, not sure why I am getting thi...
39