GAE 数据存储的前端 - 类似于 GAE 的 phpMyAdmin
是否有一些前端可以允许管理员插入、更新、删除记录,并从 Google 应用程序引擎数据存储区创建修改和删除表,就像您在 mysql 上使用 phpMyAdmin 一样???
is there some front end that could allow an admin to insert, update, delete records, and create modify and drop tables from Google Application Engine datastore, just like you do with phpMyAdmin on mysql???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Google App Engine 提供了一个开箱即用的管理控制台来管理您的记录。
作为有效的替代方案,请查看 App Engine 管理 项目。
此处已实现功能的完整列表。
Google App Engine provides out of the box an administration console to manage your records.
As a valid alternative, have a look to the App Engine admin project.
Here the complete list of implemented features.
您是否尝试过 http://localhost:8888/_ah/admin/datastore ?这是非常基本的,但它已经存在了。
Have you tried http://localhost:8888/_ah/admin/datastore? It's very basic but it is already there.
在生产中,管理控制台提供此功能。在 SDK 中,您可以转到
/_ah/admin/datastore
进行相同的操作。In production, the admin console provides this functionality. In the SDK, you can go to
/_ah/admin/datastore
for the same.