Within a listview, with many objects, I want to change their value live by javascript, then save them by a POST/PUT http request to the object updateview, searching I've found that it maybe possible with Django REST framework.
I've read the Django REST framework manual reference
but didn't understand how to set up the UpdateView call:
model.py
class presetrows(models.Model):
progressivo = models.ForeignKey(preset)
value = models.BigIntegerField(blank=True, null=True)
views.py
class RighePresetListView(ListView):
queryset = presetrows.objects.filter(stato=True)
class RighePresetUpdateView(UpdateView):
model = presetrows
exclude=()
but where should I add the update(request, *args, **kwargs) from django REST?
You don't really needs to define
update(request, *args, **kwargs)
in DRF views. For update api you can use thisProvides put and patch method handlers implicitly.