Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我喜欢我的 json 输出格式很好,即使是 REST API。它在调试等时很有帮助。额外的开销很小,尤其是在使用 gzip 时
反正有没有告诉金字塔json渲染器(即这个东西)
@view_config(request_method='POST', renderer='json')
输出格式化的、漂亮的打印输出?
我只是自己想通了。在我的初始化中,我添加了
from pyramid.renderers import JSON # ... config.add_renderer('prettyjson', JSON(indent=4))
然后我只是在我看来这样做
@view_config(request_method='POST', renderer='prettyjson')