gpt4 book ai didi

asp.net - 如何在 Firefox 中解码来自 jQuery $.ajax 请求的 XML 响应

转载 作者:行者123 更新时间:2023-12-03 22:52:11 24 4
gpt4 key购买 nike

我正在尝试创建一个对 WebService 的 ajax 请求,该请求返回给定 XML 中某些指定参数的数据。这似乎在 IE 中运行良好,但 Firefox 无法解码响应。解码后我也可以在 Fiddler 中成功查看响应。这是代码:

$(function() {
$.ajax({
type: "GET",
url: 'http:/localhost/webservice.asmx/GetTags?groupId=10',
contentType: "text/xml; charset=utf-8",
dataType: "xml",
success: function(response) {
$('#result').html('success',response);
$(response).find("string").each(function() {
$('#result').append($(this).text());
});
},
error: function(response) {
$('#result').html('failure',response);
}
});

});

有没有办法指定响应需要解码?或者还有其他方法可以让它发挥作用吗?

编辑:@Nikki9696 - 它不是 JSON 编码,因为数据以 XML 形式返回。

@Oleg - 如果通过 URL 访问 Web 服务,我可以在浏览器中看到的示例 XML 如下:

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://tempuri.org/">
<string>tag 1</string>
<string>tag 2</string>
<string>tag 3</string>
</ArrayOfString>

TextView 中的 fiddler 返回 和一条消息

"Response is encoded and may need to be decoded before inspection. Click here to transform."

单击后,它会显示相同的 XML。我在 IIS 中关闭动态内容压缩,然后 XML 立即在 fiddler 中可见,但 FF 仍然无法应对,因此排除了压缩。

我稍微研究了一下脚本,似乎 jQuery 可以默认或猜测一些参数,因此 dataType 等不是强制性的。通过这些设置,我收到一条成功消息,但它仍然不知道如何处理数据。我尝试按照某些 SS 线程中的建议将 dataType 设置为“jsonp”(目前找不到它,当我找到时会链接它),并且错误更改为 missing ; before语句,我猜是因为它不是JSON对象,而是XML。有没有办法设置 webservice 返回 JSON?

编辑 2:我已更新 url 以反射(reflect)实际发生的情况。抱歉,我错过了它,导致任何人都无法发现它。

最佳答案

因为您使用像 '/webservice.asmx/GetTags?groupId=10' 这样的相对 URL,所以您对不同的域没有任何问题。在我看来,你应该修改一下你的 JavaScript 代码。例如下面的代码

$(function () {
$.ajax({
type: "GET",
url: '/WebService1.asmx/GetTags',
contentType: "text/xml; charset=utf-8",
data: {groupId:10},
success: function (response) {
$('#result').html('success:');
$(response).find("string").each(function () {
$('#result').append('<br />'+$(this).text());
});
},
error: function (response) {
$('#result').html('failure:<br />' + response.responseText);
}
});
});

在 Internet Explorer、Firefox 和 Google Chrome 中运行良好。如果您需要,我可以发布 URL,您可以在其中下载整个工作 Visual Studio 2010 项目。

更新:要从 Web 方法返回 JSON 而不是 XML,您可以将 [ScriptMethod(UseHttpGet = true)] 替换为 [ScriptMethod (UseHttpGet = true) true, ResponseFormat = ResponseFormat.Json)] 属性(在 .NET 4.0 中,您可以通过其他不同方式执行相同操作)并将 JavaScript 代码修改为以下内容

$(function () {
$.ajax({
type: "GET",
url: '/WebService1.asmx/GetTagsJson',
contentType: "application/json; charset=utf-8",
data: { groupId: 10 },
//dataType: "xml",
success: function (response) {
$('#result').html('success:');
$(response.d).each(function () {
$('#result').append('<br />' + this);
});
},
error: function (response) {
$('#result').html('failure:<br />' + response.responseText);
}
});
});

关于asp.net - 如何在 Firefox 中解码来自 jQuery $.ajax 请求的 XML 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4565054/

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