gpt4 book ai didi

python - 如何在python中使用flask_restplus在swagger ui上使用*********隐藏密码

转载 作者:行者123 更新时间:2023-12-01 11:57:00 25 4
gpt4 key购买 nike

嗨,下面是我的运行代码,可以通过以下 URL 访问:
http://127.0.0.1:5000/api/documentation

from flask import Flask, Blueprint
from flask_restplus import Api, Resource, fields

app = Flask(__name__)
blueprint = Blueprint('api', __name__, url_prefix='/api')
api = Api(blueprint, doc='/documentation') #,doc=False

app.register_blueprint(blueprint)

app.config['SWAGGER_UI_JSONEDITOR'] = True

login_details = api.model('LoginModel',{'user_name' : fields.String('The Username.'),'pass_word' : fields.String('The password.'),})
# pass_word = api.model('Pwd', {'pass_word' : fields.String('The password.')})
credentials = []
python = {'user_name' : '1234','pwd':'23213413'}
credentials.append(python)

@api.route('/login')
class Language(Resource):

@api.marshal_with(login_details, envelope='the_data',mask='pass_word')
def get(self):
return credentials

@api.expect(login_details)
@api.marshal_with(login_details, envelope='the_data',mask='pass_word')
def post(self):
login_details = api.payload
print(login_details)
login_details['id'] = len(credentials) + 1

credentials.append(login_details)
return {'result' : 'credentials added'}, 201

if __name__ == '__main__':
app.run(debug=True)


当我进入 swagger UI 时,你能告诉我应该怎么做才能用 ***** 隐藏密码,并且值应该正确传递给参数。

最佳答案

根据 flask-restful documentation关于Models,你可以在开头看到 fields.Raw 上课可以带 format parameter :
它可以:

modify how the value of existing object keys should be presented


所以你可以用这个 format值为 'password' 的参数,如 Swagger documentation about data types 中所述在“字符串”部分下:

An optional format modifier serves as a hint at the contents and format of the string. OpenAPI defines the following built-in string formats:

[...]

password – a hint to UIs to mask the input


所以你可以使用这个 format='password'就像在您的字段定义中一样:
pass_word = fields.String('The password.', format='password')
但问题是您使用的是 expect装饰器,标准 Model定义,它不允许您轻松自定义请求解析器。我建议使用 Marshmallow能够更好地控制对象序列化。

关于python - 如何在python中使用flask_restplus在swagger ui上使用*********隐藏密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55166833/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com