gpt4 book ai didi

jquery classic asp 返回 HTML 和 recordcount/其他数据

转载 作者:行者123 更新时间:2023-12-01 08:23:44 27 4
gpt4 key购买 nike

使用经典 ASP 对返回 HTML 的 asp 页面进行 JQuery ajax 调用。效果很好。现在我不仅想从我调用的页面返回 HTML,还想返回一些数字,例如记录计数。我该怎么做?

这是我的 AJAX 调用:

function sendCcbRequest(text) {
var jsonToSend = { text: escape(text) };
var jsonToSend={ id: 1, lastname: escape(text) } ;

$.ajax({
type: "POST",
url: 'test-ajax-handler.asp',
data: jsonToSend,
success: function(response) {
$('#output').append(response);
},
error: function() {
alert("error");
}
}); // end ajax

}

它调用的页面只是response.write 的一些HTML。我希望它也能推出计数。

最佳答案

您可以让 ASP 页面在响应中发送自定义 HTTP header ,例如:

XHR-Count: 5

与:

Response.AddHeader "XHR-Count", "5"

然后在 success 回调中获取此 header :

$.ajax({
type: "POST",
url: 'test-ajax-handler.asp',
data: jsonToSend,
success: function(response, status, xhr) {
var count = xhr.getResponseHeader('XHR-Count');
alert(count);
$('#output').append(response);
},
error: function() {
alert("error");
}
});

关于jquery classic asp 返回 HTML 和 recordcount/其他数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5641585/

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