我在这里阅读了QuerySet API的文档和一些答案,但似乎无法弄清楚。我认为我不了解其背后的概念。
因此,这是我的models.py:
class Categoria(models.Model):
TODOS = 'Todos'
VEICULO = 'Veiculo'
EQUIPAMENTO = 'Equipamento'
SERVICO = 'Servico'
OUTRO = 'Outro'
CATEOGRY_CHOICES = (
(TODOS, 'Todos'),
(VEICULO, 'Veiculo'),
(EQUIPAMENTO, 'Equipamento'),
(SERVICO, 'Servico'),
(OUTRO, 'Outro')
)
tipo = models.CharField(max_length=15, choices=CATEOGRY_CHOICES, default=TODOS)
def __str__(self):
return self.tipo
class Anuncio(models.Model):
titulo = models.CharField(max_length=50)
anuncio = models.TextField(max_length=200)
preco = models.DecimalField(max_digits=6, decimal_places=2)
contato = models.CharField(max_length=30)
publicacao = models.DateTimeField()
categoria = models.ManyToManyField(Categoria)
def __str__(self):
return self.titulo
然后,我将此字典发送到视图:
{ 'anuncios' : Anuncio.objects.all()
这就是我显示值的方式:
{% for item in anuncios %}
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<h3>{{ item.titulo }}</h3>
<p>{{ item.anuncio }}</p>
<address>{{ item.contato }}</address>
<h6><a href="#">{{ item.categoria.all.values }}</a></h6>
</div>
</div>
{% endfor %}
但是我无法从ManyToManyField获得正确的价值。如果使用
item.categoria
,则会得到lista.Categoria.None
(lista是应用程序的名称)。如果使用item.categoria.all
,则会得到<QuerySet [<Categoria: Servico>]>
。如果使用
item.categoria.all.values
,则会得到<QuerySet [{'id': 7, 'tipo': 'Servico'}]>
。在这种情况下,我真正想要的只是“ Servico”一词。另外,如果我尝试过滤某些内容,则会显示
TemplateSyntaxError at /
消息Could not parse the remainder:
。 最佳答案
这是多对多的关系。不仅有一个类别,而且有很多。因此您不能仅访问“ Servicio”,因为您可能有多个项目。您需要迭代:
{% for cat in item.categoria.all %}{{ cat.tipo }}{% endfor %}
关于python - 无法从Django中的ManyToManyField检索值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42033927/