87.QuerySet API使用详解:create方法

2021-01-14 02:12

阅读:655

标签:response   class   方式   name   示例   text   proc   model   djang   

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方法

标签:response   class   方式   name   示例   text   proc   model   djang   

原文地址:https://www.cnblogs.com/guyan-2020/p/12271255.html


评论


亲,登录后才可以留言!