这将返回一个 json 对象
http://developer.echonest.com/api/v4/artist/search?api_key=youAPIKey&name=radiohead
我试过这种方式,但没有奏效。
function cc() {
jQuery.ajax({
url: "http://developer.echonest.com/api/v4/artist/search?api_key=APIKey&name=radiohead",
type: "POST",
dataType: "json",
async: false,
success: function (data) {
console.log(data);
}
});
}
我如何调用这个 url 并使用 java 脚本或 jquery 访问对象值。