大きな JSON オブジェクト (Google Feed API から) と URL をコンテキストから取得しました。コンテキストからの URL がフィード エントリの URL と同じ場合、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"}