使用Django的RSS / ATOM中缺少图像

问题描述 投票:0回答:1

由于Django的文档,我试图将图像附加到我的ATOM和RSS联合供稿中:https://docs.djangoproject.com/fr/1.11/ref/contrib/syndication/

我必须输入某种提要:http://example.com/rsshttp://mywebsite.com/atom

rss.py

class LatestEntriesFeed(Feed):
title = "MyWebsite"
link = "/"
description = "Latest news"


def items(self):
    return Articles.objects.filter(published=True).order_by('-date')[:5]

def item_description(self, item):
    return '<![CDATA[ <img src="http://example.com/image.jpeg" /> ]]>'

def item_title(self, item):
    return item.title

def item_pubdate(self, item):
    return item.date

def item_updateddate(self, item):
    return item.update

def item_author_name(self, item):
    return item.author

def item_author_link(self, item):
    item_author_link = Site_URL + reverse('team', kwargs={'username': item.author})
    return item_author_link

def item_author_email(self):
    return EMAIL_HOST_USER

class LatestEntriesFeedAtom(LatestEntriesFeed):
    feed_type = Atom1Feed
    subtitle = LatestEntriesFeed.description

所以我认为我必须在描述html标记中使用CDATA。但是,在Django(1.11版)中,item_description不会在XML中返回<description>标记,而是返回<summary>标记。

是否很好,还是问题的根源?

否则,我尝试使用W3C验证程序进行扫描,但出现2个错误(或只是警告?)

1)自我参考与文档位置不匹配

2)无效的HTML:应为'-'或'DOCTYPE'。未找到。 (5次出现)

python django rss atom-feed django-1.11
1个回答
0
投票

我找到了解决方案。我放弃了CDATA标签来遵循这种结构:

def item_description(self, item):
  return '<figure><img src="http://example.com/image.jpeg" class="type:primaryImage" /><figcaption><p>My Image description</p></figcaption></figure><p>Some text</p>'

我在Google手册的帮助下:https://support.google.com/news/publisher-center/answer/9545420?hl=fr

© www.soinside.com 2019 - 2024. All rights reserved.