我想在我的网站上显示这家要塞的日常商店。 使用以下API的即时消息:https://fortnite-public-api.theapinetwork.com/prod09/store/get
我的要求是:
<Script>
$(document).ready(function() {
var form = new FormData();
form.append("language", "en");
var settings = {
"async": true,
"crossDomain": true,
"url": "https://fortnite-public-api.theapinetwork.com/prod09/store/get",
"method": "POST",
"headers": {
"Authorization": "my key..."
},
"processData": false,
"contentType": "false",
"mimeType": "multipart/form-data",
"data": form
}
$.ajax(settings).done(function (response) {
console.log(response);
var json = $.parseJSON(response);
$(json).each(function(i,val){
$.each(val,function(k,v){
console.log(k+" : "+ v);
for (var i=0;i<json.length;++i)
{
$('json').append('<div class="name">'+json[i].name+'</>');
}
});
$('#json').html(json);
});
});
});
</Script>
我在控制台中看到了api数据,但是无法在前端显示。 最后两行只是尝试和错误,仍然无法将数据附加到我的html页面上...
整个代码必须是jquery,不能在我的网站上使用php ...