1

我已经在代码端点下面编写了从前端接收到的数据,我已经为 get 实现了相同的方式,它可以工作,但不适用于 post

parser = reqparse.RequestParser()
parser.add_argument("update", type=bool, help="Update the data set") 
parser.add_argument(
"set_name", type=str, help="Name of the set you want to add

@api.route("/add_set")
 class AddNewSet(Resource): 
@api.doc(parser=parser) 
def post(self):
     """ endpoint that handles request for deploying services 
         :return: (int) deployed service id from database. 
     """

          print "Hello hellooo"
          args = parser.parse_args() 
          print "doink"

抛出错误:

{ "message": "无法解码 JSON 对象:无法解码 JSON 对象" }

并且文本“doink”没有被打印,所以我怀疑parser.parse_args()没有按预期工作,或者我做错了什么。

4

1 回答 1

-1

默认情况下,RequestParser 从 request.json 和 request.values 中查找 args

请参阅:https ://flask-restplus.readthedocs.io/en/stable/parsing.html#argument-locations

至于你的代码,我没有尝试你的方式来定义帖子的 args,我是这样做的

@api.expect(api.model(
  'ModelName', dict(
    arg1 = fields.String(required=True),
    arg2 = fields.Integer,
  )
))
def post(self):
  return {'result': 'success'}

我还建议给出明确的退货条款,甚至return None.

于 2018-10-01T12:51:39.640 回答