gpt4 book ai didi

Delicious feed 的 jQuery RSS 解析问题

转载 作者:行者123 更新时间:2023-12-01 05:07:53 25 4
gpt4 key购买 nike

我正在尝试解析我的美味链接提要来生成自定义 html。我无法解析 item.link 和 item.creator (以下 rss 的索引 3,4)。



<p>


Delicious/myusername
http://www.delicious.com/myusername
bookmarks posted by myusername
</p>

<pre><code><item>
<title>Full-function Core Data example app « Peter McIntyre</title>
<pubDate>Mon, 11 Nov 2005 04:02:00 -0730</pubDate>
<guid isPermaLink="false">http://www.delicious.com/url/8b20ab1d1fa021f744acb67f69e22a36#myusername</guid>
<link>http://petermcintyre.wordpress.com/2010/02/24/full-function-core-data-example-app/</link>
<dc:creator><![CDATA[myusername]]></dc:creator>
<comments>http://www.delicious.com/url/8b20ab1d1fa021f744acb67f69e22a36</comments>
<wfw:commentRss>http://feeds.delicious.com/v2/rss/url/8b20ab1d1fa021f744acb67f69e22a36</wfw:commentRss>
<source url="http://feeds.delicious.com/v2/rss/myusername">myusername's bookmarks</source>
<category domain="http://www.delicious.com/myusername/">iphone,</category>
<category domain="http://www.delicious.com/myusername/">coredata,</category>
</item>
<item>
<title>Is there a high-level gestures library for iPhone development? - Stack Overflow</title>
<pubDate>Fri, 24 Sep 2008 09:19:16 +0730</pubDate>
<guid isPermaLink="false">http://www.delicious.com/url/5082a6b90d2dfecbf9673c3f61e45abc#myusername</guid>
<link>http://stackoverflow.com/questions/907512/is-there-a-high-level-gestures-library-for-iphone-development</link>
<dc:creator><![CDATA[myusername]]></dc:creator>
<comments>http://www.delicious.com/url/5082a6b90d2dfecbf9673c3f61e45abc</comments>
<wfw:commentRss>http://feeds.delicious.com/v2/rss/url/5082a6b90d2dfecbf9673c3f61e45abc</wfw:commentRss>
<source url="http://feeds.delicious.com/v2/rss/myusername">myusername's bookmarks</source>
<category domain="http://www.delicious.com/myusername/">iPhone</category>
<category domain="http://www.delicious.com/myusername/">gesture</category>
<category domain="http://www.delicious.com/myusername/">objc</category>
<category domain="http://www.delicious.com/myusername/">gesture-recognization</category>
</item>
</code></pre>

<p></p>

<p></p>

这是我的 jQuery 代码,我从 ID 为“rss”的文本区域获取 rss 输入,并尝试在 Firebug 控制台中打印链接。

feed = $('#rss').val();



<p>$(feed).find('item').each(function(){
console.log($(this).children().eq(3).text());</p>

});

由于某种原因,完整的 xml 未正确呈现,这里是美味提要的 Pastebin 链接 http://pastebin.com/KbDNyL0P

更新:看来我使用了错误的 jQuery 版本/发行版,我从导致问题的插件目录复制了 jQuery。经验教训:始终从 jQuery/GoogleCode 网站下载。

最佳答案

尝试使用 json

http://feeds.delicious.com/v2/json/myusername?count=15

$.ajax({
dataType: 'jsonp',
data: 'count=15',
jsonp: 'callback',
url: 'http://feeds.delicious.com/v2/json/myusername?callback=?',
success: function (data) {
$.each(data, function(i,item){
console.log(item.u);
});
}
});

关于Delicious feed 的 jQuery RSS 解析问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4101264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com