1、准备 json 中文数据文件:posts.json,位置同manage.py所在的路径
推荐在线excel转json网站--> https://tableconvert.com/
2、运行 shell
python manage.py shell
>>>import json
>>>from blog.models import Post
由于有中文要用到encoding='utf-8',注意...后有四个空格
推荐在线excel转json网站--> https://tableconvert.com/
2、运行 shell
python manage.py shell
>>>import json
>>>from blog.models import Post
由于有中文要用到encoding='utf-8',注意...后有四个空格
>>>with open('posts.json', encoding= 'utf-8') as f:
... posts_json = json.load(f)
...
>>>for post in posts_json:
... post = Post(title = post['title'], content = post['content'])
... post.save()
...
>>>
评论
发表评论