0

我需要在 RSS 中提供缩略图,即在 RSS 中显示图片。我开始使用雅虎的媒体 RSS 模块。好的文档,好的例子。好的。

这是我的 RSS xml 片段,__ 它不显示图片:

<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:media="http://search.yahoo.com/mrss/">
    <channel>
        <link>http://localhost:8080/dir/jrOreAeH/Pictures.html</link>
        <item>
            <title>Winter.jpg</title>
            <link>http://localhost:8080/photo/iZ0Omnkt/Winter.html</link>
            <media:content fileSize="105542" height="100"
                url="http://localhost:8080/img/37/f5b44ca3/Winter.jpg?sizeM=2" width="100"/>
            <pubDate>25/10/2010</pubDate>
        </item>
        <item>
            <title>Edge.jpg</title>
            <link>http://localhost:8080/photo/yfLmrjtu/Edge.html</link>
            <media:content fileSize="28521" height="100"
                url="http://localhost:8080/img/38/650b5132/Edge.jpg?sizeM=2" width="100"/>
            <pubDate>25/10/2010</pubDate>
        </item>
    </channel>
</rss>

我相信 xml 是正确的,应该显示图像,但实际上 - 不是。那么,怎么了?!

4

2 回答 2

2

我已经使用这个正常工作:

<media:thumbnail url="http://localhost:8080/img/38/650b5132/Edge.jpg?sizeM=2" />
<media:content url="http://localhost:8080/img/38/650b5132/Edge.jpg?sizeM=2" />
于 2010-07-14T10:14:30.847 回答
0

尝试将元素嵌套在 ..

然后,如果您在浏览器中查看 rss,媒体元素有时默认不显示,请查看源代码以查看您的媒体元素是否存在。

您可能必须使用 php 或 asp 脚本将 Rss 转换为 XMLDocumnet 对象,然后在 php 中您可以回显您的 html 和提要变量。对于 asp,我必须调用 XSL 样式表以显示您想要的元素。 .

将 rss 转换为 dom doc 的 ASP 脚本。

XSL 样式表示例..

    <xsl:variable name="title" select="title" />
    <xsl:variable name="description" select="description" />
    <xsl:variable name="thumb" select="media:content/media:thumbnail/@url" />

    <p class="bold"><a style="text-decoration: none"><xsl:attribute name="href"><xsl:value-of select="link"/></xsl:attribute><xsl:value-of select="$title" disable-output-escaping="yes"/></a></p>
    <p><xsl:value-of select="$description" disable-output-escaping="yes"/></p>
    <img src="{$thumb}" alt="{$title}"/>
</xsl:if>

于 2010-09-03T15:51:51.087 回答