問題
最近使用flask jsonify 進行序列號的過程發現 如果是decimal類型 就會出錯,錯誤如下
typeerror object of type 'decimal' is not json serializable jsonify
解決方案
根據 https://github.com/pallets/flask/issues/835 的解決方案如下
pip install simplejson
原文地址: Python Flask jsonify a Decimal Error
標簽: python flask jsonify Decimal