我正在使用 j-query 调用 ASP.Net Web 服务(.asmx),我的响应是一个 json 数组,如下所示
我的jQuery代码是:
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
url: "http://localhost:1000/WebSite2/Service.asmx/HelloWorld",
data: '{}',
success: function(msg) {
alert(msg.d);
},
error: function() {
alert("Error");
}
});
我的回答是:
[
{
"id":1,
"name":"a",
"place":"b"
},
{
"id":2,
"name":"c",
"place":"d"
},
{
"id":3,
"name":"e",
"place":"f"
}
]
我想使用 j-query 将数组中的每个对象添加到列表中。我尝试了很多方法但失败了谁能帮助我