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.
好吧,我现在正在使用瓶子。我现在想知道我能够如何构建自定义响应。我有一个操作一些数据的小脚本,我发送了这些数据,然后,我想发送一个响应代码,如果有没有做一些修改......我正在查看瓶子的文档并没有找到任何东西... 提前致谢
要创建自定义响应,您需要使用一个bottle.BaseResponse对象。该文档描述了该类,并且似乎很容易使用。因此,要实现您想要的,只需使用BaseResponse您希望的状态代码(以及您需要包含的任何其他数据)创建一个对象,然后从您的视图中返回它。
bottle.BaseResponse
BaseResponse