gpt4 book ai didi

javascript - 使用 ajax 从 wikipedia api 渲染图像

转载 作者:行者123 更新时间:2023-11-29 19:27:33 27 4
gpt4 key购买 nike

我正在尝试渲染维基百科文章的图像。

例如来自 https://de.wikipedia.org/wiki/Appendizitis

为了避免跨源策略,我使用代理:

function imageWp() {

var word = 'Appendizitis';

$.ajaxPrefilter( function (options) {
if (options.crossDomain && jQuery.support.cors) {
var https = (window.location.protocol === 'http:' ? 'http:' : 'https:');
options.url = https + '//cors-anywhere.herokuapp.com/' + options.url;
}
});

$.get(
'https://de.wikipedia.org/w/api.php?action=parse&format=json&prop=text&section=0&page=' + word + '&callback=?',
function (response) {
console.log("> ", response);
$("#viewer").html(response);
});
}

我怎样才能只解析图像?或者,是否有更好的方法使用 javascript、jquery 和 ajax?我不想使用 PHP。

最佳答案

function imageWp() {

var word = 'Appendizitis';

$.ajaxPrefilter(function (options) {
if (options.crossDomain && jQuery.support.cors) {
var https = (window.location.protocol === 'http:' ? 'http:' : 'https:');
options.url = https + '//cors-anywhere.herokuapp.com/' + options.url;
}
});

$.get(
'https://de.wikipedia.org/w/api.php?action=parse&format=json&prop=text&section=0&page=' + word + '&callback=?',

function (response) {
var m;
var urls = [];
var regex = /<img.*?src=\\"(.*?)\\"/gmi;

while (m = regex.exec(response)) {
urls.push(m[1]);
}

urls.forEach(function (url) {
$("#viewer").append('<img src="' + window.location.protocol + url + '">');
});
});
}

imageWp();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="viewer"></div>

关于javascript - 使用 ajax 从 wikipedia api 渲染图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29983413/

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