gpt4 book ai didi

jquery - ASP.NET AJAX 返回 JSON 但未识别为 JSON

转载 作者:行者123 更新时间:2023-12-01 06:17:25 25 4
gpt4 key购买 nike

我有这个功能可以让我返回经理列表

function getManagers() {
var jqxhr = $.ajax({
type: 'POST',
contentType: "application/json; charset=utf-8",
url: '/webservice.asmx/GetManagers',
dataType: 'json'
}).success(function(data) {
var options = '<option selected="selected" disabled="disabled">Select Manager</option>';
for (var i = 0; i < data.length; i++) {
options += '<option value="' + data[i].PostRef + '">' + data[i].Description + '</option>';
}
$('#ReceivingCellManager').html(options);
}).error(function(data) {
$('.ErrorText').html('Manager load failed please refresh page with F5');
$("#errormessage").dialog('open');
}).complete(function() {
});
}

如您所见,我正在使用 JQuery 并希望使用可用的管理器填充下拉列表

我的服务中的方法如下所示

    [WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public void GetManagers()
{
using (var context = new ConcessionModel())
{
var rcm = Business.GetManager();
var serializer = new JavaScriptSerializer();
var response = rcm.Count() != 0
? serializer.Serialize(rcm)
: serializer.Serialize(new Error { Code = "500", Message = "Manager Retrieval Failed" });
this.Context.Response.Clear();
this.Context.Response.ContentType = "application/json";
this.Context.Response.Write(response);
}
}

当调用该方法时,我收到 200 OK 响应,并且该响应包含我想要的 JSON,但我遇到的问题是该响应未被识别为 JSON。

我已经尝试过

  • dataType添加到ajax调用中,如上所示
  • 从响应末尾删除 this.Context.Response.flush,这解决了我在发送 header 后调整 header 时遇到的错误。
  • 向方法添加响应格式
  • 向上下文添加Response.ContentType这些都未能让我获得所需的 JSON 识别。任何帮助将不胜感激。

更新:JSON 格式

{"描述":"数据","代码":"数据","引用":"数据"}

更新 JSON 响应我在响应中看到一些奇怪的东西,我的响应如下

[{"Description":"data","Code":"data","reference":"data"}]{"d":null}

我不确定 d null 对象是什么

最佳答案

为了从服务中访问 json 对象(例如“Dog”类的对象),方法返回类型应为“Dog”。不要在服务中使用response.write。然后,您可以使用“data.d”访问成功消息中的数据。

希望这有帮助!

关于jquery - ASP.NET AJAX 返回 JSON 但未识别为 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9939548/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com