gpt4 book ai didi

javascript - 如何使用 javascript 从博客 json-in-script 文件中获取 标签?

转载 作者:行者123 更新时间:2023-11-28 10:13:44 26 4
gpt4 key购买 nike

我正在使用 Blogger,我需要使用 JSON feed API 从最新帖子中获取最后的图像,在该 API 中,您将 FEED 模式设置为“json-in-script”。

Google Description of JSON BLOGGER API

我正在研究代码,但找不到任何方法来获得我想要的东西。我可以提取 media$thumbnails,但我需要调整图像大小,因此我需要原始大小。

有人知道吗?

额外:如何让 jQuery 在 Blogger 中工作?

最佳答案

这里有一个 jQuery 片段,应该会对您有所帮助。它获取您的提要,循环查看帖子并获取所有图像引用。一旦将图像引用放入数组中,您就应该能够根据需要处理它们。在使用脚本之前,请不要忘记使用正确的域更新“feedURL”。

<script type="text/javascript">
$(document).ready(function() {
var imgArray = new Array(); // Holds array of images
var feedURL = 'http://<yourdomain.com>/feeds/posts/default?alt=json-in-script&callback=?';

// Make ajax call to blogger
$.ajax({
url: feedURL,
dataType: 'jsonp',
success: function(data) {
// Loop over each post
$.each(data.feed.entry, function(idx, ele) {
// Get image references
var matches = new Array();
if( (matches = ele.content.$t.match(/https?:\/\/.+?\.(jpg|gif|png)/gi)) != null )
{
$.merge(imgArray, matches);
}
});
}
});

// do something with imgArray here
// ...
});
</script>

关于javascript - 如何使用 javascript 从博客 json-in-script 文件中获取 <img> 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7019543/

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