0

Web 服务的输出,“http://localhost:6833/Service1.asmx/HelloWorld”:

<string xmlns="http://tempuri.org/">
[{"Name":"Pini","Age":"30","ID":"111"},{"Name":"Yaniv","Age":"31","ID":"Cohen"},{"Name":"Yoni","Age":"20","ID":"Biton"}]
</string>

HTML 代码:

<html>
<head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
        type: "POST", 
        url: "Service1.asmx/HelloWorld", 
        data: "{}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function(msg) {
            alert("Result: " + msg);
        },
        error: function(XMLHttpRequest, textStatus, errorThrown) {
            alert("Error: " + textStatus);
    }
});
});
</script>
</head>
<body>
</body>
</html>

当我在浏览器中运行 index.html 时,我收到错误警报。尝试了很多东西,但找不到丢失的内容。

4

2 回答 2

1

你的 json 封装在一个 xml 字符串中,我想这就是你的问题。

编辑:

查看这篇文章了解更多信息。

于 2012-07-18T10:56:17.173 回答
0

尝试在您的方法之前添加它。

 [ScriptMethod(ResponseFormat = ResponseFormat.Json)] 

以下

 [WebMethod]
于 2012-07-18T11:13:20.090 回答