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

您好我正在使用提交给C ++ cgi程序的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;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值