# dumpdata
python manage.py dumpdata # 導出整個資料庫的資料
python manage.py dumpdata apps.model(對應的model) > model.json # 導出某個表的資料
# 目前沒有辦法按條件導出資料
# 如果一定要實作按條件導出可以使用以下方法:
# django-fixture-magic
# 來源位址:https://github.com/jter/django-fixture-magic
# 來源位址中有非常詳細的使用方法