简体   繁体   中英

Django updating a model with a many-to-many field

I am trying to make a post editor for my website. When I trigger the post model I receive the error "Cannot update model field (only non-relations and foreign keys permitted)." when updating. How do I update this model?

models.py

class Post(models.Model):
    title = models.CharField(max_length=256)
    disclaimer = models.CharField(max_length=256, blank=True)
    BLOGS = 'blogs'
    APPLICATIONS = 'applications'
    GAMES = 'games'
    WEBSITES = 'websites'
    GALLERY = 'gallery'
    PRIMARY_CHOICES = (
        (BLOGS, 'Blogs'),
        (APPLICATIONS, 'Applications'),
        (GAMES, 'Games'),
        (WEBSITES, 'Websites'),
    )
    content_type = models.CharField(max_length=256, choices=PRIMARY_CHOICES, default=BLOGS)
    screenshot = models.CharField(max_length=256, blank=True)
    tags = TaggableManager()
    body = RichTextField()
    date_posted = models.DateTimeField(default=datetime.now)
    date_edited = models.DateTimeField(blank=True, null=True)
    visible = models.BooleanField(default=True)
    nsfw = models.BooleanField()
    allow_comments = models.BooleanField(default=True)
    files = models.ManyToManyField(File, blank=True)

    def __str__(self):
        if (self.visible == False):
            return '(Hidden) ' + self.title + ' in ' + self.content_type
        return self.title + ' in ' + self.content_type

views.py

class EditPostView(UpdateView):
    form_class = PostForm
    model = Post
    template_name = 'personal/editpost.html'

    def get(self, request, pk):

        if (not request.user.is_superuser):
            return HttpResponseForbidden()

        post = Post.objects.get(id=pk)
        if (post is None):
            return HttpResponseNotFound()

        form = self.form_class(instance=post)

        return render(request, self.template_name, {'form': form, 'post': post})

    def post(self, request, pk):

        if (not request.user.is_superuser):
            return HttpResponseForbidden()

        post = Post.objects.get(id=pk)
        if (post is None):
            return HttpResponseNotFound()

        form = self.form_class(request.POST, instance=post)

        if (form.is_valid()):
            title = form.cleaned_data['title']
            content_type = form.cleaned_data['content_type']
            screenshot = form.cleaned_data['screenshot']
            tags = form.cleaned_data['tags']
            body = form.cleaned_data['body']
            nsfw = form.cleaned_data['nsfw']
            allow_comments = form.cleaned_data['allow_comments']
            files = form.cleaned_data['files'] 

            date_edited = datetime.now()

            Post.objects.filter(id=pk).update(title=title, content_type=content_type,
                                              screenshot=screenshot, tags=tags, 
                                              body=body, nsfw=nsfw, 
                                              allow_comments=allow_comments,
                                              files=files,
                                              date_edited=date_edited)

            return redirect('/posts/' + str(post.id))
        else:
            return HttpResponseNotFound()

        return HttpResponseNotFound()

I would change:

Post.objects.filter(id=pk).update(title=title, content_type=content_type, screenshot=screenshot, tags=tags, body=body, nsfw=nsfw, allow_comments=allow_comments, files=files, date_edited=date_edited)

to:

post = Post.objects.get(pk=pk)
post.title=title
post.content_type=content_type
post.screenshot=screenshot
post.tags=tags
post.body=body
post.nsfw=nsfw
post.allow_comments=allow_comments
post.files=files
post.date_edited=date_edited
post.save()

It looks that files is an many-to-many field? Then you need to make an object of that string and add it. Example code:

file = File()
file.name = ""
file.save()    

post = Post.objects.get(pk=pk)
post.title=title
post.content_type=content_type
post.screenshot=screenshot
post.tags=tags
post.body=body
post.nsfw=nsfw
post.allow_comments=allow_comments
post.files.add(file)
post.date_edited=date_edited
post.save()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM