<script>
$(document).ready(function(){
$.ajax({
url:'...',
type: 'GET',
dataType: 'jsonp',
processData: true,
crossDomain: true,
beforeSend: function(xhr){
xhr.setRequestHeader('X-SOMETHING-Key', 'lettersandnumbers')},
success: function(data){
console.log(data);
}
});
});
</script>
我更改了键值,因为它非常隐私。也是网址。
我在控制台中遇到了这样的错误:
index.html:1用于从...加载资源的SSL证书将在M70中不受信任。一旦不信任,将阻止用户加载这些资源。有关详细信息,请参阅https://g.co/chrome/symantecpkicerts。
jquery.min.js:2 GET ... callback = jQuery3310028832911017486307_1522854704209&amp; _ = 1522854704210 net :: ERR_ABORTED
我命令从url读取JSON数据,同时下载数据集标题请求'X-SOMETHING-KEY',其值为'lettersandnumbers'。 我在这里没有犯错。