我已经逐步检查了我的 WebServices 代码以验证我实际上是在返回数据,但是当我检查 JSON 端的返回时,它总是显示“null”。
这是 WebService 代码的片段。
更新:为了大大简化事情,我从 Web 服务返回一个简单的列表,而不是自定义对象,并且我还压缩了 AJAX 调用。
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public List<string> GetLocations(string CustomerID)
{
List<string> LocationsList = new List<string>();
string sql = "select customer_site from demand_addresses where customer_identifier=" + CustomerID;
if (gDB.ExecuteRet(sql, "DB"))
{
DataTable dt = gDB.GetResultDataSet(0);
int i = 0;
if (dt.Rows.Count > 0)
{
foreach (DataRow rs in dt.Rows)
{
LocationsList.Add(rs["customer_site"].ToString());
}
}
else
{
LocationsList.Add("No Data Found.");
}
return LocationsList;
}
else
{
LocationsList.Add("No Data Found.");
return LocationsList;
}
这是 AJAX 调用(已更新以反映下面 Kami 的评论):
$.ajax({
type: "POST",
url: "/webservices/services.asmx/GetLocations",
data: "{ 'CustomerID': '" + selectedCustomer + "' }",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data) { alert(data.d); },
error: function (status) {alert(status);}
});
“alert(data.d)”行导致“TypeError:data is null”,如果我将其更改为“alert(data)”,我只会得到一个显示“null”的警报框。
我需要帮助理解为什么 Web 服务正确返回数据,但它没有返回 AJAX/JSON。