gpt4 book ai didi

jquery - 尝试解析 xhr.responseText

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

我正在使用 jquery get 来调用 ASP MVC Controller 。它返回部分 View 。即一堆 html

如果出现错误,我想为用户填充一些信息,但 ASP MVC 正在发送回整个页面,因此我需要从中获取文本。

我已经尝试过:

$('#edit').ajaxError(function (e, xhr, settings, exception) {
var item = xhr.responseText.text();
var response = item.match(/.*<body.*>(.*)<\/body>.*/);
if (!response) {
$(this).html('Error: ' + xhr.status + ' Message:' + xhr.statusText);
}
else {
$(this).html(response);
};
});

但是我得到 Uncaught TypeError: [followed by thecontents of xhr.responseText] has no method text

如果我直接在responseText上调用match,我会得到null结果。

我猜我有一些根本性的误解,所以如果有人可以提供帮助......

最佳答案

您还应该修改正则表达式以包含换行符,即

var response = xhr.responseText.match(/.*<body.*>([\s\S]*)<\/body>.*/);

关于jquery - 尝试解析 xhr.responseText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6946184/

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