Why is “Object of type Decimal is not JSON serializable” - when using marshmallow with SQLAlchemy automap?

泪湿孤枕 提交于 2019-12-06 16:43:38

An easy workaround to transform an SQLAlchemy result object in JSON is using simplejson.

You just need to import it (import simplejson) and it works.

Using your example:

import simplejson
...
@app.route("/")
def api():
    all_rows = session.query(MyTable).all()
    response = simplejson.dumps(all_rows)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!