0

我有记录访问持续时间的问题。

我写了这样的测试html文件:

<!DOCTYPE html>
<html>
    <body>
        <script language="JavaScript" type="text/javascript">

            function enter() {
                this.chrono = new Date().getMilliseconds();
                alert("test");
            }

            function leave() {
                this.chrono = new Date().getMilliseconds() - this.chrono;

                var myAjax = new Ajax.Request('visitor_log/ajax_store_visit_duration.php?visit_duration=' + this.chrono.toString(),{
                        method: 'get',
                        onComplete:handlerFunction
                });

                return null;
            }

            window.onload = enter;
            window.onbeforeunload = leave;
        </script>
    </body>
</html>

PHP 文件(visitor_log/ajax_store_visit_duration.php):

<?php

if(isset($_GET["visit_duration"]))
{
    $text = $_GET["visit_duration"];

    log($text);
}
else die("error");

function log($text)
{
    $myFile = "test.txt";
    $fh = fopen($myFile, 'wb');
    fwrite($fh, $text);
    fclose($fh);
}

?>

当我在浏览器中输入:

http://localhost/visitor_log/ajax_store_visit_duration.php?visit_duration=123

它根据我的需要创建文本文件,但似乎onbeforeunload事件中的 AJAX 调用不起作用。

我的代码有什么问题?


编辑:

我创建了测试函数来查找 AJAX 调用的问题。

        function testajax(){
            this.chrono = new Date().getMilliseconds() - this.chrono;

           var blockingRequest = new XMLHttpRequest();
            blockingRequest.open("GET", "visitor_log/ajax_store_visit_duration.php?visit_duration=" + 123, false); // async = false
            blockingRequest.send();

            return null;
        }

        window.onload = testajax;
    </script>
</body>

这也行不通。

4

1 回答 1

0

好的,所以故意不使用 jQuery:

这是PHP:

<?php

function loggit($text) {
    $myFile = "/tmp/test.txt";
    $fh = fopen($myFile, 'wb');
    fwrite($fh, $text);
    fclose($fh);
}

if(isset($_GET["visit_duration"])) {
    $text = $_GET["visit_duration"];
    loggit($text);
}
else die("error");

?>

这是HTML:

<!DOCTYPE html>
<html>
<body>
<script language="JavaScript" type="text/javascript">

    function enter() {
        this.chrono = new Date().getMilliseconds();
    }

    function leave() {
        this.chrono = new Date().getMilliseconds() - this.chrono;

        alert("test" + this.chrono);

    var blockingRequest = new XMLHttpRequest();
    blockingRequest.open("GET", "http://localhost/_TempFiles/temp.php?visit_duration=" + this.chrono.toString(), false); // async = false
    blockingRequest.send();

        return null;
    }

    window.onload = enter;
    window.onbeforeunload = leave;
</script>
</body>
</html>

您想使用异步请求(请参阅发送到 blockingrequest.open 的错误)-但请注意这是一个 BLOCKING 请求(因此得名)。

另外我将php函数的名称从“log”更改为“loggit”log是php自然对数函数...

于 2013-08-02T17:04:39.517 回答