我正在尝试使用jQuery插件jFeed显示rss feed,如下所示。它是打印警报('ok')但它没有显示Feed标题alert(feed.title);
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" src="javascript/jquery.js"></script>
<script type="text/javascript" src="javascript/jquery.jfeed.js"></script>
<script type="text/javascript">
$(document).ready(function(){
alert('ok');
$.getFeed({
url: 'http://feeds.nytimes.com/nyt/rss/Technology',
success: function(feed) {
alert(feed.title);
}
});
});
</script>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<div id="main">
</div>
</body>
</html>
答案 0 :(得分:2)
您无法加载外部供稿(来自与调用页面不同的域)。
从插件页面引用
存档中提供了示例, 以及基本的PHP代理(测试 用于加载外部的目的 饲料。强>
捆绑包中有 proxy.php 文件。
使用它。
要使用您需要提供的代理
$.getFeed({
url: '/local-path-to-proxy/proxy.php',
data: {url:'http://feeds.nytimes.com/nyt/rss/Technology'},
success: function(feed) {
alert(feed.title);
}
});
(相应地调整代理文件的路径)