为了账号安全,请及时绑定邮箱和手机立即绑定

如何保存数据库

如何保存数据库

一只萌萌小番薯 2021-06-02 21:01:30
代码views.py:from django.shortcuts import renderfrom django.http import HttpResponsefrom django.views.decorators.csrf import csrf_exemptfrom home.models import Post@csrf_exemptdef home(request):    context = {'request_method': request.method}    if request.method == 'POST':        context['request_payload'] = request.POST.dict()        post_data = dict(request.POST)        print(post_data)         for key, value in post_data.items():            for subvalue in value:                print(key, subvalue)                if key == 'name':                    m = Post.name(subvalue)                    m.save()                if key == 'description':                    print(subvalue)                    p = Post.description(subvalue)                    p.save()    if request.method == 'GET':        context['request_payload'] = request.GET.dict()    return HttpResponse()代码模型.pyfrom django.db import modelsclass Post(models.Model):    name = models.CharField(max_length=150)    description = models.CharField(max_length=150)结果中print(post_data)的{'name': ['luca', 'jeams'], 'description': ['all', 'all2']}. 结果提取值print(key, value)是:name Lucaname jeamsdescription alldescription all2我想将这些数据保存在数据库中,但它不起作用。我能怎么做?
查看完整描述

2 回答

?
守着星空守着你

TA贡献1799条经验 获得超8个赞

替换您的 post 方法代码,如下所示:


if request.method == 'POST':

for ind, obj in enumerate(request.POST.getlist('name')):

    desc = request.POST.getlist('description')[ind]

    Post.object.create(name=obj, description=desc)

这对你有用


查看完整回答
反对 回复 2021-06-09
  • 2 回答
  • 0 关注
  • 114 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信