我不太了解JS,我只需要一些帮助来显示我从和服api获得的数据。
<script>
function kimonoCallback(data) {
// do something with the data
// please make sure the scope of this function is global
}
$.ajax({
"url":"https://www.kimonolabs.com/api/3li6gyum?apikey=**********&callback=kimonoCallback",
"crossDomain":true,
"dataType":"jsonp"
});
</script>
我以为我可以使用.html(),但它不起作用。
非常感谢任何帮助。 谢谢!
编辑:
像这样?console.log(data);
$.each(data.results, function( index, collection ) {
$.each(collection, function( index, object ) {
console.log(object.1);
console.log(object.2);
console.log(object.3);
console.log(object.4);
console.log(object.5);
console.log(object.6);
});
});
}
我之后怎么办?谢谢!