python - 使用WhooshAlchemy报错’function’ object has no attribute ’config’
问题描述
我想用WhooshAlchemy做全文搜索,但是用的时候报错:

我的config.py:import osfrom app import basedirCSRF_ENABLED = TrueSECRET_KEY = ’hard to guess string’SQLALCHEMY_TRACK_MODIFICATIONS = Falsebasedir = os.path.abspath(os.path.dirname(__file__))WHOOSH_BASE = os.path.join(basedir, ’search.db’)__init__.py:
def create_app():
app = Flask(__name__)app.config.from_pyfile(’config’)app.config[’SQLALCHEMY_DATABASE_URI’] = ’sqlite:///’ + path.join(basedir, ’data.sqlite’)# ’mysql://root:123456@localhost/shop’app.config[’SQLALCHEMY_COMMIT_ON_TEARDOWN’] = Trueapp.config.from_object(’config’)db.init_app(app)bootstrap.init_app(app)login_manager.init_app(app)from auth import auth as auth_blueprintfrom main import main as main_blueprint
models.py:class Post(db.Model):
__tablename__ = ’posts’__searchable__ = [’title’]id = db.Column(db.Integer, primary_key=True)title = db.Column(db.String)body = db.Column(db.String)created = db.Column(db.DateTime, index=True, default=datetime.utcnow)clicks = db.Column(db.Integer)comments = db.relationship(’Comment’, backref=’post’, lazy=’dynamic’)author_id = db.Column(db.Integer, db.ForeignKey(’users.id’))
if enable_search:
whooshalchemy.whoosh_index(app, Post)
问题解答
回答1:报错已经很明显了,whoosh_index函数要的是app ,但你转入create_app函数,检查下吧!
相关文章:
1. docker api 开发的端口怎么获取?2. docker容器呢SSH为什么连不通呢?3. spring-mvc - spring-session-redis HttpSessionListener失效4. 如何解决Centos下Docker服务启动无响应,且输入docker命令无响应?5. docker网络端口映射,没有方便点的操作方法么?6. Docker for Mac 创建的dnsmasq容器连不上/不工作的问题7. 前端 - 类到底该如何去命名 .newsList 这种的命名难道真的不是过度语义化吗?~8. docker images显示的镜像过多,狗眼被亮瞎了,怎么办?9. docker gitlab 如何git clone?10. docker不显示端口映射呢?

网公网安备