Closed zhzhzoo closed 8 years ago
之前 from app import models 被注释掉了。。。
Please move all imports to the head of file.
@huxuan models.py 里有 from app import db,所以 db 必须在 models 之前定义
models.py
from app import db
db
models
Thanks for clarification.
之前 from app import models 被注释掉了。。。