0

我正在使用 Django 构建一个小型系统来控制学生咖啡馆借给学生的一些东西的借贷。 我在提交表单后无法识别对象,我想将该对象标记为“不可用”(disponible 表示可用,因此我想将其设置为 False),因此下次有人来询问该对象时,它将没有出现在“贷款”表格中。

我所需要的只是一个关于如何实现它的提示,我一直在浏览 Django 文档和这个网站,但没有成功。提前感谢您的提示!

模型.py

class Mate(models.Model):
color = models.CharField(max_length=2,
    choices=COLOR_CHOICES, default=u'RO')
disponible = models.BooleanField(default=True)

def __unicode__(self):
    return self.color


class Prestamo(models.Model):
cliente = models.ForeignKey(Usuario, null=False, blank=False)
mate = models.ForeignKey(Mate, null=False, blank=False)
termo = models.ForeignKey(Termo, null=False, blank=False)
bombilla = models.ForeignKey(Bombilla, null=False, blank=False)
fecha = models.DateTimeField(null=False, blank=False)
devuelto = models.BooleanField(default=False)
fecha_devolucion = models.DateTimeField(null=True, blank=True)

def __unicode__(self):
    return str(self.pk)

视图.py

@login_required
# Add_prestamo means 'Add lending' this basically deals with prestamo model, but i want to alter 'mate' objects here too.
def add_prestamo(request):
if request.method == 'POST':
    form = PrestamoForm(request.POST,
            auto_id=False, error_class=DivErrorList)

    if form.is_valid():
        prestamo = form.save(commit=False)

        if request.POST.get('usuarios'):
            miuser = request.POST.get('usuarios', '')
        else:
            miuser = ''
        prestamo.cliente = Usuario.objects.get(nombre__exact=miuser)

        # I KINDA NEED SOMETHING RIGHT HERE

        prestamo.fecha = timezone.now()
        prestamo.devuelto = False
        prestamo.save()
        return HttpResponseRedirect(reverse('list-prestamos'))
else:
    form = PrestamoForm()
return TemplateResponse(request,
         'gester/add_prestamo.html', {'form': form, })

add_prestamo.html

<form action="" method="post">
    {% csrf_token %}
        <table>
            <tr>
            <td>
                <div class="ui-widget">
                  <label for="usuarios">Usuario: </label></td><td>
                  <input id="usuarios" name="usuarios">
                </div>
                </td>
            </tr>
            {{ form.as_table }}
        </table>
    <input class="btn" type="submit" value="Crear" />
</form>

在模板中,我使用 {{ form.as_table }} 显示表单,它显示一个选择,但其中许多(伙伴)具有相同的颜色,所以当我在视图中通过 POST 时,如何识别确切的对象改变'disponible'字段值?

4

1 回答 1

1

我真的不明白你的代码,但因为你提到了 disponible,我希望这就是你的意思。

prestamo.fecha = timezone.now()
prestamo.devuelto = False

//Because Prestamo model has a foreignkey for Mate model. 
//The Mate model contains the disponible field which you want to access 
//     (to set it to False or unavailable)?
//This is how to access and update it.
prestamo.mate.disponible = False
prestamo.mate.save()

prestamo.save()
于 2013-03-11T03:13:53.577 回答