我正在使用github.com/golang/appengine及其相关的"数据存储"。我希望这个软件包允许我在普通的Go网站上使用Datastore。不幸的是,我的
c := appengine.NewContext(rq)
继续给我一个" NewContext传递了一个未知的http.Request"错误。我的app.yaml包含
application: sdklessdatastoremusic
version: 1
runtime: go
api_version: go1
handlers:
- url: /.*
script: _go_app
vm: true
manual_scaling:
instances: 1
YAML应该是什么,或者其他地方的问题是什么?
答案 0 :(得分:1)
App Engine程序包仅适用于在App Engine上运行的情况,而不适用于其他地方。