0

到目前为止,如果参数来自"in": "body"或者预期的输入是json 格式,我可以进行招摇验证。但是,我找不到如何验证作为formData输入的简单字符串

下面是我的招摇脚本(json格式)

v1swag = {
    "cancels_post": {
        "tags": ["/api/v1"],
        "parameters": [
            {
                "name": "token",
                "in": "formData",
                "type": "string",
                "required": True,
                "description": "Cancels the provided token.",
            }
        ],
        "responses": {
            "200": {
                "description": "Success!",
            }
        }
    }
}

我删除了架构,因为它似乎只适用于“in”:“body”

我一直在网上搜索,但似乎找不到光。虽然我仍然会搜索......任何提示将不胜感激。

非常感谢您提前。

4

1 回答 1

0

此处必须使用不同的源媒体类型。指定“消费”成员以包含媒体类型application/x-www-form-urlencoded

v1swag = {
    "cancels_post": {
        "tags": ["/api/v1"],
        "consumes": [
            "application/x-www-form-urlencoded"
         ],
        "parameters": [
            {
                "name": "token",
                "in": "formData",
                "type": "string",
                "required": True,
                "description": "Cancels the provided token.",
            }
        ],
        "responses": {
            "200": {
                "description": "Success!",
            }
        }
    }
}
于 2018-02-01T16:59:07.030 回答