标签:response class 方式 name 示例 text proc model djang
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!")
标签:response class 方式 name 示例 text proc model djang
原文地址:https://www.cnblogs.com/guyan-2020/p/12271255.html