GAE Go 版本 3 API 错误

发布于 2024-12-11 08:36:10 字数 193 浏览 0 评论 0原文

我正在尝试将一个非常简单的网络应用程序更新到 Go GAE 的版本 3。每当我在数据存储中查询我知道存在的特定对象时,我都会收到此错误,但其他查询似乎会默默失败。您使用数据存储的方式是否已更改(排除函数参数 - 我的新代码可以编译!)?

错误 = API 错误 4(datastore_v3:NEED_INDEX):找不到匹配的索引。

谢谢

I'm attempting to update a pretty trivial web-app to version 3 of Go GAE. I get this error whenever I query the datastore for a specific object that I know is there, but other queries seem to fail silently. Has the way you use the datastore changed (function parameters excluded - my new code does compile!)?

Error = API error 4 (datastore_v3: NEED_INDEX): no matching index found.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一桥轻雨一伞开 2024-12-18 08:36:10

您正在尝试执行需要自定义索引的查询,但您尚未指定索引(或者尚未完成构建)。您应该在本地 dev_appserver 上充分运行您的应用程序,然后上传您的应用程序以更新索引定义。

You're attempting to execute a query that requires a custom index, but you haven't specified one (or it hasn't finished building). You should fully exercise your app on your local dev_appserver, then upload your app to update the index definitions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文