webpy:如何提供 JSON 服务
是否可以使用 webpy 来提供 JSON 服务? 我构建了自己的网站,需要以 JSON 格式提供一些信息,以便与某些页面上的 Javascript 进行交互。
我尝试在文档中寻找答案,但找不到任何东西。
谢谢, 乔万尼
Is it possible to use webpy to serve JSON?
I built my website and I need to serve some information in JSON to interact with the Javascript on some pages.
I try to look for answers in the documentation, but I'm not able to find anything.
Thanks,
Giovanni
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您不必为 web.py 做任何过于“特殊”的事情来提供 JSON。
I wouldn't think you'd have to do any thing overly "special" for web.py to serve JSON.
当然可以从 webpy 提供 JSON,但是如果你选择一个框架,我会看看 starlight 和我的 fork twilight (用于文档)。
它有一个 JSON 包装器,用于修复 json 响应的 http 标头。
它使用 json 或 simplejson 库来处理与其他对象之间的转换。
我现在正在使用它,非常棒。
https://bitbucket.org/marchon/twilight
在其中你会找到一个名为 ShowMeTheJson.py 的示例
使用简单的 json
It is certainly possible to serve JSON from webpy, But if you and choosing a framework, I would look at starlight and my fork twilight (for documentation).
It has a JSON wrapper for fixing the http headers for your json response.
it uses either the json or simplejson libraries for json handling the conversions to and from other objects.
I am using it right now and it is great.
https://bitbucket.org/marchon/twilight
in it you will find an example called ShowMeTheJson.py
that uses simple json