0

这是一个非常小的原型/实验应用程序。设备每隔一段时间就会进入睡眠状态以节省电池寿命,用户将访问本地网页并按下按钮以更改设备的某些内容——这会使用下面的 javascript 代码向设备发送 POST。

由于用户按下按钮时设备可能处于睡眠状态,因此它将错过 POST。我知道这是不好的做法,但我基本上需要网页继续发布(甚至不知道我是否正确使用了术语)或发送数据,直到它收到响应。我尝试了一个while循环,但它只发送了一次,也许我把它放在了错误的地方。

function execPOST(url, postData, callback) {
    var postRequest = newAjaxRequest();
    postRequest.onreadystatechange = function() {
        if (postRequest.readyState == 4) {
            if (postRequest.error) {
                callback(1, "Request had an error.");
                alert('postRequest Error');
            } else {
                var status;
                try {
                    status = postRequest.status;
                } catch (err) {
                    callback(1, "Failed to get HTTP status from server.");
                    return;
                }
                if (status == 200 || status == 0) {
                    callback(0, postRequest.responseText);
                } else {
                    callback(1, "POST: Unexpected HTTP Status: "
                            + postRequest.status);
                    alert('POST: Unexpected HTTP Status: '
                        + postRequest.status);
                }
            }
        }
    }
    if (postRequest.overrideMimeType){
        postRequest.overrideMimeType("text/xml");
    }
    postRequest.open("POST", url, false);
 //I tried adding this while loop hoping it would keep sending but it only sent once
    while (postRequest.readystate != 4)
    {
        setTimeout('',2000);
        postRequest.send(postData);
    }
    return postRequest;
}
4

2 回答 2

1

我建议查看socket.io以循环“ping”设备直到它醒来,然后发送 POST 请求。

于 2013-08-08T19:03:10.033 回答
0

你考虑过使用jquery吗?

function ping () {
    $.ajax (
          <url>
        , {
              error:    function ( jqXHR, textStatus, errorThrown ) {
                        }
            , timeout:  5000    // in ms
            , type:     'POST'
          }
    }).done(function ( data, textStatus, jqxhr ) {
        // whatever
    }).fail(function ( jqxhr, textStatus, data ) {
        // note that the order of arguments is different from that of the success handler ('done') !
        if (textStatus === 'timeout') {
            ping();
        }
        else {
            // ... more error handling
        }
    });

有关更多信息,请查阅文档

于 2013-08-08T19:15:11.703 回答