Flask开启debug模式的几种方式:

  1. app.run(debug=True)中传递一个参数debug=True就可以开启DEBUG模式。
  2. 设置app.deubg=True,就可以开启debug模式。
  3. 通过配置参数的形式设置DEBUG模式:app.config.update(DEBUG=True)
  4. 通过配置文件的形式设置DEBUG模式:。
    新建一个config.py文件:

    #encoding: utf-8
    DEBUG=True

    导入

    import config
    app.config.from_object(config)
Last modification:October 19, 2020
If you think my article is useful to you, please feel free to appreciate