我想知道如何正确地从以下 json 返回数据:假装我有一个 url http://test.com/tesdata,它给了我以下数据:
[{"Identifier":1, "Name":"Test"},
{"Identifier":2, "Name":"Test"},
{"Identifier":3, "Name":"Test"}]
所以我做了以下操作来在 div 中获取这些数据:
$.ajax({
type: 'GET',
url: 'http://notgiven',
data: { get_param: 'value' },
dataType: 'json',
success: function (data) {
alert("s");
$.each(data, function(index, element) {
$('.result').append("a");
});
},
error: function(jqXHR, textStatus, errorThrown){
alert("jqXHR: " + JSON.stringify(jqXHR));
alert("textStatus: " + JSON.stringify(textStatus));
alert("errorThrown: " + JSON.stringify(errorThrown));
}
});
我收到以下错误无法解析 Json 字符串