ajax readystate为1,Ajax readyState总是等于1

这篇博客探讨了在C++ CGI程序中遇到的Ajax请求readyState始终为1的故障排查过程。作者分享了他们的JavaScript代码,指出问题可能在于xhr对象的创建或事件处理函数。同时,还给出了CGI程序的简单实现。解决方案可能涉及检查异步请求的配置、状态改变事件的注册以及错误处理机制。
摘要由CSDN通过智能技术生成

您好,我正在使用提交给C++ cgi程序的ajax。我遇到的问题是readyState总是1.我不明白我做错了什么。Ajax readyState总是等于1

var asyncRequest; // XMLHttpRequest object

try

{

asyncRequest = new XMLHttpRequest();

// Register event handler

asyncRequest.onreadystatechange = StateChange;

// Prepare to post data to URL asynchronously

asyncRequest.open("POST", "save_vote.cgi", true);

//Data to be sent to cgi program

postData="star=1&movie=test";

// Set the appropriate HTTP request headers

asyncRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");

asyncRequest.setRequestHeader("Content-length", postData.length);

// Make request

asyncRequest.send(postData);

}

catch (exception)

{

alert("Request failed: " + exception.message);

}

}

function StateChange()

{

// Make sure request has completed with 200 OK status

//alert(asyncRequest.status)

if (asyncRequest.readyState == 4 && asyncRequest.status == 200)

{

alert("Hello");

}

}

这里是CGI程序

#include "cgi.h"

#include

int main()

{

cout << "Content-type: text/html\n\n";

ParseInputParameters();

ofstream fout;

if (fout.fail())

{

cout << "CGI Error - Couldn't open file for appending for appending.";

return 0;

}

//message to be sent back in the response text

cout << "OK";

fout.close();

return 0;

}

+0

显示的代码是否为EXACT代码? 'var asyncRequest;'之前有什么?如果它是一个函数,'asyncRequest'变量被私有包装,''ReadyState(){}''中的'asyncRequest'变量不代表预期的XHR对象。 –

+0

是的,它在一个名为ajaxUpdate的函数中。之前没有太多的功能名称。那么在readyState函数中代表asyncRequest变量的解决方案是什么? –

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值