config, 导入配置文件的方式
1. 配置文件是.py 文件, 使用 app.config.from_object
的方式来加载配置文件
# 1. 先导入配置文件, 如:
import config
# 2. 配置
app.config.from_object(config)
2. 使用 app.config.from_pyfile
的方式来加载配置文件。(此加载方式不局限于.py 文件,还可以是其他后缀的文件), 如:
app = Flask(__name__)
# app.config.from_pyfile('config.py')
# app.config.from_pyfile('config.txt')
app.config.from_pyfile('config.cnf', silent=True) # 传递 silent=True, 那么这个文件即使没有找到,也不会报错, 默认silent=False
- 这种方式加载配置文件, 不局限于.py 文件
- 这种方式可以传递
silent=True
, 那么这个文件没有找到的情况下,程序也不会报错
原文地址:https://www.cnblogs.com/nichengshishaonian/p/11610003.html
时间: 2024-10-14 01:39:39