0

如何检查x变量是否为 == "about" 字符串?

我尝试:

{% for x in p %}
    {% if x == "about" %}
        <a href="/about/">About</a>
    {% endif %}
{% endfor %}

{{ x }}= 关于

但不起作用(if不显示的内容)

编辑:

def search(request):
    if 'search' in request.GET:
        term = request.GET['search']
        if len(term) > 3:
            p = Chunk.objects.filter(Q(content__contains=term) | Q(
                key__contains=term))
            count = p.count()
            return render_to_response('search_result.html',
                {'p': p, 'count': count},
                context_instance=RequestContext(request))
    ....

Chunk来自 django-chunks 应用程序

pkey从这个:

class Chunk(models.Model):

    key = models.CharField(_(u'Key'), help_text=_(u"A unique name for this chunk of content"), blank=False, max_length=255, unique=True)
    content = models.TextField(_(u'Content'), blank=True)
    description = models.CharField(_(u'Description'), blank=True, max_length=64, help_text=_(u"Short Description"))
4

2 回答 2

1

尝试这样做:

{% for x in p %}
    {% ifequal x "about" %}
        <a href="/about/">About</a>
    {% endifequal %}
{% endfor %}

UPDATE p 是 QuerySet,所以 x 是模型的实例。您应该指定包含要比较的文本的属性。

于 2013-03-15T14:14:12.753 回答
0

在这种情况下,p是一个对象,而不是一个属性,因此您不能将字符串值“about”与 object 进行比较p。如果p有一个属性,说“名字”,你可以这样做:

{% if p.name == "about" %}
于 2013-03-15T14:27:49.453 回答