gpt4 book ai didi

javascript - 使用 Google Feed API 的 jQuery 自动 RSS Feed 列表不起作用

转载 作者:行者123 更新时间:2023-11-30 16:05:09 28 4
gpt4 key购买 nike

我试图在不使用任何插件的情况下在 jQuery 中构建 rss 提要,我在这里找到了解决方案:designshack.net它使用不再使用的 Google Feed API。我发现解决方案很简单,但它不起作用。我正在寻找的是一个 RSS 提要,它使用 jQuery 解析来自其他博客/站点的 JSON 响应,而无需任何插件。

同时附上 fiddle链接。

代码在这里:

<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html">
<title>Automated jQuery RSS Feed Demo</title>
<link rel="stylesheet" type="text/css" media="all" href="css/styles.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" language="javascript" src="js/parser.js"></script>
</head>

<body>
<div id="topbar"><a href="http://designshack.net">Back to Design Shack</a></div>

<div id="w">
<div id="content">
<h1>Automated jQuery RSS Feed Listing</h1>

<div id="nouperss" class="feedcontainer"></div>
<hr>

</div><!-- @end #content -->
</div><!-- @end #w -->
<script type="text/javascript">
$(function(){
// running custom RSS functions
parseRSS('http://www.noupe.com/feed/', '#nouperss');

});
</script>
</body>
</html>

解析器.js (jQuery)

/**
* parses any RSS/XML feed through Google and returns JSON data
* source: http://stackoverflow.com/a/6271906/477958
*/
function parseRSS(url, container) {
$.ajax({
url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url),
dataType: 'json',
success: function(data) {
//console.log(data.responseData.feed);
$(container).html('<h2>'+capitaliseFirstLetter(data.responseData.feed.title)+'</h2>');

$.each(data.responseData.feed.entries, function(key, value){
var thehtml = '<h3><a href="'+value.link+'" target="_blank">'+value.title+'</a></h3>';
$(container).append(thehtml);
});
}
});
}

/**
* Capitalizes the first letter of any string variable
* source: http://stackoverflow.com/a/1026087/477958
*/
function capitaliseFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}

*css 未附加。需要的话告诉我

编辑:这是错误: enter image description here

最佳答案

在JSfiddle外部资源就用这个

https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js

而不是使用整个 HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>

标签。现在可以用了

https://jsfiddle.net/6qsmLoog/1/

编辑:我更改了您的 JS fiddle 以添加它。因此链接现在显示提要。

EDIT2:在本地运行

从这里更改 ajax 中的 URL

 url: document.location.protocol + '//ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url),

 url: 'http://ajax.googleapis.com/ajax/services/feed/load?v=1.0&num=10&callback=?&q=' + encodeURIComponent(url),

由于 document.location.protocol 在文档位置搜索协议(protocol),在本地,它是 file://而不是 http://。在服务器上运行的 JSfiddle 中,协议(protocol)正确设置为 http。

关于javascript - 使用 Google Feed API 的 jQuery 自动 RSS Feed 列表不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37145366/

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