包括烧瓶棉花糖导致失败
Including flask-marshmallow causes failure
我有 0.13.0 版本的 flask-marshmallow
我可以在 Flask 应用程序中访问 SQLAlchemyAutoSchema
当我尝试 运行 应用程序时,出现以下错误
AttributeError: 'Marshmallow' object has no attribute 'SQLAlchemyAutoSchema'
烧瓶棉花糖初始化
from flask_sqlalchemy import SQLAlchemy
from flask_marshmallow import Marshmallow
db = SQLAlchemy()
ma = Marshmallow()
我已经用 flask app 注册了 db 和 ma
代码:
from apis import ma
from apis.models import User
class UserSchema(ma.SQLAlchemyAutoSchema):
class Meta:
model = User
flask-marshmallow
has a dependency on marshmallow-sqlalchemy
为 SQLAlchemySchema
类 待定义。
确保您还安装了 marshmallow-sqlalchemy
。
我有 0.13.0 版本的 flask-marshmallow
我可以在 Flask 应用程序中访问 SQLAlchemyAutoSchema
当我尝试 运行 应用程序时,出现以下错误
AttributeError: 'Marshmallow' object has no attribute 'SQLAlchemyAutoSchema'
烧瓶棉花糖初始化
from flask_sqlalchemy import SQLAlchemy
from flask_marshmallow import Marshmallow
db = SQLAlchemy()
ma = Marshmallow()
我已经用 flask app 注册了 db 和 ma 代码:
from apis import ma
from apis.models import User
class UserSchema(ma.SQLAlchemyAutoSchema):
class Meta:
model = User
flask-marshmallow
has a dependency on marshmallow-sqlalchemy
为 SQLAlchemySchema
类 待定义。
确保您还安装了 marshmallow-sqlalchemy
。