我正在尝试从 python 创建一个端点,它允许我从选项列表中选择一个选项。我正在使用烧瓶restx。
我想要类似的东西:
其实我在想这样的事情:
resource_fields = api.model('Resource', {
'name': fields.String,
'status': fields.String(enum=["available", "pending", "sold"])
})
@api.route('/my-resource/<id>', endpoint='my-resource')
class MyResource(Resource):
@api.marshal_with(resource_fields, as_list=True)
def get(self):
return get_objects()
但我不知道该怎么做。谢谢。