作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在记录我的响应模型,并且需要显示api返回的字符串列表。
["user1","user2"]
ns.response(200,'Success', NS.model("my_get_model",[{
"name": fields.String(example="user1"),
}]))
ns = Namespace('My Apis')
ns.response(200,'Success', [ns.model("my_get_model",
fields.String(example="user1")
)])
ns.response(200,'Success', ["user1"])
ns.response(200,'Success', ns.model("my_get_model",fields.List(fields.String(example="user1"))))
最佳答案
我认为这是您需要的:https://github.com/python-restx/flask-restx/issues/65
尝试简单地传递fields.List
而不包装模型。
ns.response(200, 'Success', fields.List(fields.String(example="user1")))
flask-restx
是
flask-restplus
的一个分支,它应该具有更多的更新功能,因为由于开发人员无法联系
flask-restplus
的项目所有者,不再维护
flask-restplus
。
关于python - 如何用字符串列表记录flask-restplus响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57332453/
我是一名优秀的程序员,十分优秀!