flask FSADeprecationWarning问题

出现如下警告:

FSADeprecationWarning: SQLALCHEMY_TRACK_MODIFICATIONS adds significant overhead and will be disabled by default in the future.  Set it to True or False to suppress this warning.

解决办法:

添加如下配置信息:

 

app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True  //禁止数据的修改追踪(需要消耗资源)

你可能感兴趣的:(flask FSADeprecationWarning问题)