2

好的,所以我在尝试找出如何将我保存在 localStorage 中的一些数据传递给我编写的 php 脚本时遇到了一些问题,这样我就可以将其发送到服务器上的数据库。我之前确实找到了一些代码(https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest/Using_XMLHttpRequest),看起来它可以工作,但我没有运气。

这是我保存数据的代码,而不是试图通过我的 phpscript 传递它

function getLocation() {
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(initialize, showError, takeSnap);
        }
        else {
            alert("Geolocation is not supported by this browser.");
        }
    }

function initialize(position) {
        var lat = position.coords.latitude,
            lon = position.coords.longitude;

        var mapOptions = {
            center: new google.maps.LatLng(lat, lon),
            zoom: 14,
            mapTypeId: google.maps.MapTypeId.ROADMAP,
            mapTypeControl: true
        }

        var map = new google.maps.Map(document.getElementById("map-canvas"), mapOptions);
        var marker = new google.maps.Marker({
            position: new google.maps.LatLng(lat, lon),
            map: map,
            title: "Current Location"
        });
    }

function showError(error) {
        switch (error.code) {
            case error.PERMISSION_DENIED:
                alert("User denied the request for Geolocation.");
                break;
            case error.POSITION_UNAVAILABLE:
                alert("Location information is unavailable.");
                break;
            case error.TIMEOUT:
                alert("The request to get user location timed out.");
                break;
            case error.UNKNOWN_ERROR:
                alert("An unkown error occurred.");
                break;
        }
    }

function storeLocal(position) {
        if (typeof (Storage) !== "undefined") {
            var lat = position.coords.latitude,
                lon = position.coords.longitude;

            localStorage.latitude = lat;
            localStorage.longitude = lon;
        }
        else {
            alert("Your Browser doesn't support web storage");
        }

        return
    }

    function snapShot() {
        if (navigator.geolocation) {
            navigator.geolocation.getCurrentPosition(storeLocal, showError);
        }
        else {
            alert("Geolocation is not supported by this browser.");
        }

        var oReq = new XMLHttpRequest();
        oReq.onload = reqListener;
        oReq.open("post", "snap.php?lat=" + localStorage.latitude + "&lon=" + localStorage.longitude, true);
        oReq.send();            
    }

    function reqListener() {
        console.log(this.reponseText);
    }

这是我编写的将值保存到数据库中的脚本

    <?php
    // Connecting to the database
    mysql_connect("localhost", "username", "password");
    mysql_select_db("db_name");

    $latitude = mysql_real_escape_string($_GET["lat"]);
    $longitude = mysql_real_escape_string($_GET["lon"]);

    // Submit query to insert new data
    $sql = "INSERT INTO locationsTbl(locID, lat, lon ) VALUES( 'NULL', '". $latitude ."', '". $longitude . "')";
    $result = mysql_query( $sql );

    // Inform user
    echo "<script>alert('Location saved.');</script>";

    // Close connection
    mysql_close();
    ?>
4

2 回答 2

1

怎么样:

oReq.open("get", "snap.php?lat=" + localStorage.latitude + "&lon=?" + localStorage.longitude, true);

(你也有localStorage.lon代替.longitude

由于值(字符串)在变量中,因此您需要将它们连接起来,而不是将它们放在字符串中。

此外,由于您似乎将这些东西传递给您的 PHP 以保存到数据库,从语义上讲,您应该使用 POST 请求......这与 AJAX 请求的处理方式不同。

在您的 PHP 中,您需要使用:

$latitude = $_GET["lat"];
$longitude = $_GET["lon"];

实际获取随 GET 请求发送的值。尽管应该对这些值进行转义以避免 SQL 注入。

另外,我不确定您为什么要设置onloadAJAX 请求的属性。相反,使用onreadystatechange属性...类似:

oReq.onreadystatechange = function () {
    if (oReq.readyState === 4) {
        if (oReq.status > 199 && oReq.status < 400) {
            console.log("successful response");
        } else {
            console.log("failed response: " + oReq.status);
        }
    }
};

.readyState属性是指它的状态,这4意味着它已完成(响应已返回)。该.status属性是指 HTTP 状态代码。通常在200&之间400是好的。我知道我见过人们检查200(不是范围)。

更新:

为了在请求中传递 POST 参数,您不要将它们附加到 URL - 您在.send()方法中传递它们。这是您的代码示例:

oReq.open("POST", "snap.php", true);
oReq.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
oReq.send("lat=" + encodeURIComponent(localStorage.latitude) + "&lon=" + encodeURIComponent(localStorage.longitude));

要在 PHP 中检索它们,您可以使用:

$latitude = $_POST["lat"];
$longitude = $_POST["lon"];
于 2013-04-16T16:53:32.183 回答
0

你有代码错误

它应该是 oReq.onload = reqListener; oReq.open("get", "snap.php?lat="+localStorage.latitude+"&lon="+localStorage.lon, true); oReq.send();

于 2013-04-16T16:53:46.090 回答