我有一個很大的JSON對象(來自Google Feed API)和一個來自上下文的URL。當上下文的URL與提要條目URL相同時,django應解析!Django如果標籤沒有評估相等性
{for aEntry in feed.entries %}
{% if aEntry.link == {{my_URL}} %}
<p>URL FOUND in feed entry</p>
{% endif %}
{% endfor %}
這不工作!
編輯:
feed: {
"feedUrl": "http://.blogspot.in//feeds/posts/default",
"title": "",
"link": "http://.blogspot.com/",
"author": "",
"description": "",
"type": "atom10",
"entries": [{
"title": "Shades",
"link": "http://.blogspot.com/myurl.html",
"author": "",
"publishedDate": "Sun, 29 Jul 2012 04:07:00 -0700",
"contentSnippet": "abstract art!",
"content": " HTML CONTENT HERE",
"categories": ["abstract"]
}
context = { "feed" : feed, "my_url" : "http://.blogspot.com/myurl.html"}
「aEntry.link」 是一個字符串 – anhtran
@anhtran是啊,所以做'{{my_URL}}' –
@anhtran oops。它在這個問題上的錯誤..糾正! –