Django意外保存字符串元组

时间:2019-06-14 03:59:26

标签: python django django-rest-framework

我正在django中更新数据,但是当保存在数据库中时,字符串数据变为元组字符串。

@api_view(["POST"])
def cate_edit(req):
    if not req.user.is_staff:
        return HttpResponseNotFound()
    data=jsonload(req.body)
    if not has(data,["id","title","other_title","introduction"]):
        return HttpResponseForbidden()
    id=toNumber(data["id"])
    if id==None:
        return HttpResponseForbidden()
    if id==0:
        c=Category(
            title=data["title"],
            other_title=data["other_title"],
            introduction=data["introduction"]
        )
        c.save()
        return HttpResponse(c.id)
    else:
        c=get_object_or_404(Category,id=id)
        c.title = data["title"],
        c.other_title = data["other_title"],
        c.introduction = data["introduction"]
        c.save()
        return HttpResponse(c.id)

问题发生在最后的else中,我可以确保数据是有效和正常的字典,例如 {'id': 1, 'title': '1', 'other_title': '2', 'introduction': '3'} 但是在完成此保存过程后,数据库中的数据为

title: "('1',)"
other_title:"('2',)"
introduction: '3'

介绍实际上是正确的。

此外,这是类别的模型

class Category(models.Model):
    title = models.CharField(max_length=50)
    other_title = models.CharField(max_length=50,blank=True)
    image = models.ImageField(blank=True,null=True,upload_to=file_path)
    introduction = models.TextField(default="",blank=True)
    last_modified = models.DateTimeField(auto_now=True)

    def __str__(self):
        return self.title

谢谢

更新: 使用查询和update很酷,但是为什么会发生上述情况呢?我曾经喜欢那样,但效果很好。

1 个答案:

答案 0 :(得分:4)

作业末尾有逗号。

form-validation.min.js

应该是:

c.title = data[“title”],