在 ASP.NET 中使用 AJAX 调用 Json Web 服务
本文关键字:调用 Json Web 服务 AJAX ASP NET | 更新日期: 2023-09-27 18:35:35
任何帮助将不胜感激。
概述:我有一个 .Net 解决方案,2 个项目。 一个托管 Web 服务,另一个调用 Web 服务。Web 服务接受整数 id 参数,并返回格式为 JSON 的人名。
这是直接来自Fiddler的原始输出:
HTTP/1.1 200 OK
Server: ASP.NET Development Server/10.0.0.0
Date: Wed, 16 Oct 2013 16:51:18 GMT
X-AspNet-Version: 4.0.30319
Cache-Control: private, max-age=0
Content-Type: application/json; charset=utf-8
Content-Length: 35
Connection: Close
{"PersonName":"Jane Doe"}
下面是基本的 Web 服务设置:
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
[System.Web.Script.Services.ScriptService]
public class PeopleWebService : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public void GetUserName(int ID)
{
try
{
using (EformTstEntities db = new EformTstEntities())
{
JavaScriptSerializer js = new JavaScriptSerializer();
var jsonData = new
{
PersonName = (from i in db.People where i.ID == ID select i.FirstName + " " + i.LastName).FirstOrDefault()
};
string retJSON = js.Serialize(jsonData);
Context.Response.Write(retJSON);
}
}
catch (Exception ex)
{
Context.Response.Write(string.Format("[ERROR: {0}]", ex.Message));
}
}
}
所以,我认为网络服务工作正常,不是问题......
这是我通过 ajax 对 Web 服务的基本调用。 目前,我并没有尝试对输出执行任何操作,我只是尝试调用Web服务而不会出错。 在调用中,我不断进入错误处理功能。 有什么想法吗?
<script type="text/javascript">
function getUserName() {
var id = $("#UserID").val();
$.ajax({
url: "http://localhost:1211/Services/PeopleWebService.asmx/GetUserName",
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: "{ID:'" + id + "'}",
success: function (msg) {
alert("this worked");
},
error: function () {
alert("this error");
}
});
return false;
}
</script>
尝试
data: "{'ID':'" + id + "'}",
并更改错误方法以查看错误详细信息,如下所示
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status);
alert(xhr.responseText);
alert(thrownError);
}