如何在 Flask-Security 中设置配置?
How to set configuration in Flask-Security?
我想为 SECURITY_PASSWORD_SALT
设置一个值。 documentation 给出了一个巨大的配置项列表,但没有说明如何设置这样的项。
只需使用app.config
,它就像一本字典。
app = Flask(__name__)
app.config['SECURITY_PASSWORD_SALT'] = 'foobar'
你应该阅读 this
我想为 SECURITY_PASSWORD_SALT
设置一个值。 documentation 给出了一个巨大的配置项列表,但没有说明如何设置这样的项。
只需使用app.config
,它就像一本字典。
app = Flask(__name__)
app.config['SECURITY_PASSWORD_SALT'] = 'foobar'
你应该阅读 this