search

Home  >  Q&A  >  body text

python - 请问以下Flask数据库配置哪里出错了呢?我是根据教程一步一步来做的:

请问以下Flask数据库配置哪里出错了呢?我是根据教程一步一步来做的:
教程: http://dormousehole.readthedocs.org/en/latest/tutorial/dbinit.html#tutorial-dbinit

#------code------
# all the imports
import sqlite3
from flask import Flask, request, session, g, redirect, url_for,abort, render_template, flash
from contextlib import closing

# configuration
DATABASE = '/tmp/flaskr.db'
DEBUG = True
SECRET_KEY = 'development key'
USERNAME = 'admin'
PASSWORD = 'default'
​
# create our little application :)
app = Flask(__name__)
app.config.from_envvar('FLASKR_SETTINGS', silent = True)
def connect_db():
return sqlite3.connect(app.config['DATABASE'])
def init_db():
with closing(connect_db()) as db:
with app.open_resource('schema.sql', mode='r') as f:
db.cursor().executescript(f.read())
db.commit()

#------Runing in Python IDEL------
>>> from flaskr import init_db
>>> init_db()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "flaskr.py", line 22, in init_db
    with closing(connect_db()) as db:
  File "flaskr.py", line 19, in connect_db
    return sqlite3.connect(app.config['DATABASE'])
KeyError: 'DATABASE'
ringa_leeringa_lee2855 days ago550

reply all(4)I'll reply

  • 高洛峰

    高洛峰2017-04-17 12:05:02

    DATABASE = '/tmp/flaskr.db' should be no problem.
    Add this line to the file:

        app.config.from_object(__name__)
    

    That’s it. This line of code will load the configuration from this file.

    reply
    0
  • ringa_lee

    ringa_lee2017-04-17 12:05:02

    DATABASE = '/tmp/flaskr.db' This line of configuration, confirm that the database can be found after running? If so, do you need to confirm whether the path is relative or absolute? ?

    reply
    0
  • PHPz

    PHPz2017-04-17 12:05:02

    sudo python

    reply
    0
  • 阿神

    阿神2017-04-17 12:05:02

    1. Configuration is not a separate file
    2. DATABASE uses absolute paths

    reply
    0
  • Cancelreply