将javascript数组传递给另一个页面

时间:2015-04-07 17:56:19

标签: javascript arrays google-maps cordova

我想知道是否有办法将数组及其内容传递给另一个页面供使用。

我正在使用数组来存储用于将折线绘制到谷歌地图上的坐标。数组在一个页面上工作正常,但是当我尝试调用数组在另一个地图上绘制折线点时,看起来数组已被清空,并且没有绘制折线点。

我曾尝试将localStorage与JSON stringify一起使用,但遇到了很多问题,谷歌地图不会接受以太值,因为它们包含了不期望的值,或者因为它根本无法识别格式。

var googleLatLng = [],
    latlngs = [];

function storeLatLng( lat, lng ) {
    googleLatLng.push(new google.maps.LatLng(lat, lng));
    latlngs.push([lat, lng]);

        // setcoords = JSON.stringify(googleLatLng);
        // localStorage.setItem('GoogleLatLng', setcoords);

        // console.log(localStorage.getItem("GoogleLatLng"));

        console.log(googleLatLng);
}

此代码从给定坐标构建数组,该函数从watchPosition函数的onSuccess中通过

调用
        storeLatLng(lat, lon);

然后我想在以下函数中使用数组值

function finishedWalk() {
        // storedCoords = localStorage.getItem('GoogleLatLng');
        // if(storedCoords) storedCoords = JSON.parse(storedCoords);
        navigator.geolocation.getCurrentPosition(onFinishedSuccess, onFinishedError);
}

    function onFinishedSuccess(position) {

    var latitude = position.coords.latitude;
    var longitude = position.coords.longitude;
    coords = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);

    storeLatLng(latitude, longitude);

        var mapOptions = {
            zoom: 17,
            center: coords,
            mapTypeControl: true,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };

        //create the map, and place it in the HTML map div
        map = new google.maps.Map(document.getElementById("mapPlaceholder"), mapOptions);

        if (googleLatLng.length > 0) {
          var path = new google.maps.Polyline({
            path: googleLatLng,
            strokeColor: "#FF0000",
            strokeOpacity: 1.0,
            strokeWeight: 5
          });
          path.setMap(map);
        }
}

被称为onLoad的另一页

2 个答案:

答案 0 :(得分:3)

使用会话存储或本地存储传递数据:(基本示例)

您可以使用会话存储将数据从一个页面传递到下一个页面。或者,您也可以使用类似方式的本地存储。会话结束时,不会清除本地存储空间。

对于本地存储,只需将sessionStorage替换为localStorage

要存储的数组:

var testArray = ['test'];

存储数组:

$('#store').on('click', function(){
    sessionStorage.setItem('myArray', testArray);
});

获取数组:

$('#get').on('click', function(){
    var myArray = sessionStorage.getItem('myArray');
    alert(myArray);
});

清除会话存储:

$('#clear').on('click', function(){
    sessionStorage.clear();
});

<强> HTML:

<a href="javascript:void(0);" id="store">Store Array</a>
<a href="javascript:void(0);" id="get">Get Array</a>
<a href="javascript:void(0);" id="clear">Clear</a>

检查以Chrome格式查看存储的会话:

enter image description here

如果存储字符串化数据,请务必转换回JSON:

var mydata = localStorage.getItem("GoogleLatLng");
var myObject = JSON.parse(mydata);

<强>样本:

http://jsfiddle.net/mdktpmw2/

支持旧版Internet Explorer:

部分资源:

答案 1 :(得分:0)

您希望将数据发布到其他页面。有大量的教程可以引导您完成它,包括已经回答的一些Stack答案:

how can i send the data to another page without appending it in url?

passing form data to another HTML page

您可能想要抓住下一页的onLoad中的数据。