87.QuerySet API使用详解:create方法
Posted guyan-2020
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了87.QuerySet API使用详解:create方法相关的知识,希望对你有一定的参考价值。
create:创建一条数据,并且保存到数据库中,这个方法相当于先用指定的模型创建一个一个对象,然后再调用这个对象的save方法,示例代码如下:
from django.db import connection
from django.http import HttpReponse
from .models import Book, Pulisher
def index8(request):
# 使用第一种方式添加一条数据
pubisher = Publisher(name='中国邮电出版社')
pubisher.save()
# 使用create()方法添加一条数据,使用create方法直接可以添加数据并且进行save()保存了
Publisher.objects.create(name='中国人民大学出版社')
return HttpResponse("success!")
查看数据库表中的信息:
以上是关于87.QuerySet API使用详解:create方法的主要内容,如果未能解决你的问题,请参考以下文章