gpt4 book ai didi

jquery - 使用 jQuery 解析 RSS

转载 作者:IT王子 更新时间:2023-10-29 03:23:58 27 4
gpt4 key购买 nike

我想使用 jQuery 来解析 RSS 提要。这可以通过开箱即用的基本 jQuery 库来完成,还是我需要使用插件?

最佳答案

警告

The Google Feed API is officially deprecated and doesn't work anymore!


不需要整个插件。这会将您的 RSS 作为 JSON 对象返回给回调函数:

function parseRSS(url, callback) {
$.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) {
callback(data.responseData.feed);
}
});
}

关于jquery - 使用 jQuery 解析 RSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/226663/

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