json オブジェクトを返すサーバーに ajax 呼び出しを実行しようとしていますが、機能していません...何が問題なのかわかりません助けてください...コードは次のとおりです。
$.ajax ({
type : "GET",
url : "http://api.zero1.org/v1/artists",
data : "",
dataType : "jsonp"
}).done (function(msg){
var artistNames = msg.artists[0].name;
for (var i = 0; i < artistNames.length; i++) {
console.log(artistNames[i])
$('div#artists').html(function() {
return '<li><a href="details.html"><h3 class="ul-li-heading">' + artistName[i] + '</h3><p class="ul-li-desc">artist/location</p></a></li>'
});
}
})
JSON オブジェクトは次のようになります。
{
artists: [
{
artistid: "5",
name: "Outdoor Urban Scene ",
bio: "",
programs: [
1,
2,
3,
4
]
},
{
artistid: "87",
name: "Radames Ajna",
bio: "Technical development of Mobile Crash v2",
programs: [
1,
2,
3,
4
]
}
]
}