https://github.com/gnu4cn/flasklearnings
materials for learning the flask framework
https://github.com/gnu4cn/flasklearnings
Last synced: 9 months ago
JSON representation
materials for learning the flask framework
- Host: GitHub
- URL: https://github.com/gnu4cn/flasklearnings
- Owner: gnu4cn
- Created: 2016-04-20T03:20:53.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-12T01:27:53.000Z (over 9 years ago)
- Last Synced: 2025-04-01T13:12:52.865Z (11 months ago)
- Language: Python
- Size: 17.4 MB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# flaskLearnings
1、在使用 flask 的 jsonify 输出 JSON 数据时,会碰到无法对DECIMAL等数据进行序列化的问题,此时安装 simplejson 模块即可(pip install simplejson)。[http://stackoverflow.com/questions/1960516/python-json-serialize-a-decimal-object](http://stackoverflow.com/questions/1960516/python-json-serialize-a-decimal-object)