2

我正在构建一个 PHP 脚本,用于在人们生日时向他们发送电子邮件。我还需要一个小的网络界面,我可以在其中打开或关闭整个程序,查看今天谁在庆祝他的生日,看看是否有任何邮件无法发送。服务器上的 php 正在工作,但我正在努力使用 html 和 javascript 界面。特别是从服务器获取信息的 Ajax 请求。它在 firefox、chrome 和 opera 中运行良好,但在 Internet Explorer 8 中我没有得到服务器的响应。readyState 切换为 4,但状态保持为 0,responseText 为空。

谷歌搜索后,我发现很多人建议使用 JQuery,但我无法让它在任何浏览器中工作。我想了解更多关于它的信息,因为它看起来很容易,但现在我想知道如何在没有 JQuery 的情况下做到这一点。

编辑

针对评论中的问题,切换 if 和 else 语句会产生相同的结果。就像将连接从“打开”更改为“关闭”一样,顺便说一下,它应该是关闭的,我不记得为什么要更改它,可能只是出于沮丧而尝试一些事情。最后我添加了服务器端 php 代码。服务器发送回字符串数据以防“action”被关闭,或者,如果 action 是 clearlog,则只是一个没有文本的 header,如果 action 被初始化,则返回一个 jsonarray。无论是什么请求,服务器的 HTTP 状态始终为 0。

<script type="text/javascript">
function loadXMLDoc(action) {
    var parameters = "action="+encodeURI(action);
    var xmlhttp;
    if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    }
    else {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.open("POST",'http://mailer.test/App/postscript.php',true);
    xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    xmlhttp.setRequestHeader("Content-length", parameters.length); 
    xmlhttp.setRequestHeader("Connection", "open");
    xmlhttp.send(parameters);

    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState == 4 && xmlhttp.status==200) {
            if(action == 'switchonoff'){
                document.getElementById("onoffbutton").innerHTML=xmlhttp.responseText;
            } else if(action == 'initialize'){
                var response = JSON.parse(xmlhttp.responseText);
                document.getElementById("onoffbutton").innerHTML=response['onoff'];
                document.getElementById("birthdays").innerHTML=response['birthdays'];
                document.getElementById("errors").innerHTML=response['errors'];
            } else if(action == 'clearlog'){
                document.getElementById("errors").innerHTML="";
            }
        }
    }
}

window.onload = function() {
    loadXMLDoc('initialize');
}
</script>

编辑,这是php脚本

<?php 

include "settingschanger.php";
include "customercsv.php";

if (!isset($_POST['action'])) {
$_POST['action'] = 'dummy';
}

$post = $_POST['action'];

if(strcmp($post, "initialize") == 0) {
$settings = new SettingsChanger();
$onoff = $settings->getOnOff();
$csv = new CustomerCSV();
$csv->openFile((__DIR__).CustomerCSV::FILENAME);
$todaysbirthdays = $csv->getTodaysBirthdays();
$birthdays = "";
foreach ($todaysbirthdays as $row) {
    $birthday = "";
    foreach ($row as $data) {
        $birthday .= $data . " ";
    }
    $birthdays .= $birthday . "<br />";
}
$errorLogArray = $settings->getErrorLog();
$errors = "";
foreach($errorLogArray as $line) {
    $errors .= $line . "<br />";
}
$result = json_encode(array('onoff'=>$onoff, 'birthdays'=>$birthdays, 'errors'=>$errors));

header("HTTP/1.1 200 OK");
print $result;
}
if(strcmp($post, "switchonoff") == 0) {
$settings = new SettingsChanger();
$result = $settings->changeOnOff();

header("HTTP/1.1 200 OK");
print $result;
}
if(strcmp($post, "clearlog") == 0) {
$settings = new SettingsChanger();
$settings->clearLog();

header("HTTP/1.1 200 OK");
}
?>
4

3 回答 3

0

尝试使用xmlhttp.send(parameters);afterxmlhttp.onreadystatechange语句。

于 2012-06-19T13:15:02.947 回答
0

我在旧版本的 IE(低于 v9)中返回的内容为空时遇到了一些问题,但触发了成功功能。

然后我发现我正在使用 HTML5 标签,并且在 IE 中,出于某种奇怪的原因,通过 AJAX 请求的 HTML5 输出不起作用并返回一个空的或没有 DOM。

查看“ jquery .load() not inserting data in ie8 and below ”中的最后一个编辑。

于 2012-06-19T13:20:29.467 回答
0

好吧,我得到了网站的工作。我现在使用获取请求而不是发布请求,这似乎有效。它并不完美,我将继续寻找一种通过发布请求来实现它的方法,但现在它会起作用。

于 2012-06-25T20:45:47.203 回答