找了半天,问:
https://gitter.im/timothycrosley/hug
我无法找到解决方案。

我正在寻找的是一种返回自定义 http 代码的方法,如果在 get 端点中满足条件,可以说 204。
路由问题的解释是 here

但我似乎无法找到一种方法以空响应返回 200 以外的任何其他代码

最佳答案

在他们的 repo ( https://github.com/berdario/hug/blob/5470661c6f171f1e9da609c3bf67ece21cf6d6eb/examples/return_400.py ) 中找到了一个例子

import hug
from falcon import HTTP_400

@hug.get()
def only_positive(positive: int, response):
    if positive < 0:
        response.status = HTTP_400

关于python拥抱api返回自定义http代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41444627/

10-10 15:58