Jquery Cookie无法正确读取

时间:2013-05-12 16:44:53

标签: javascript jquery google-maps cookies google-maps-api-3

我正在尝试设置一个Cookie,然后将其读入并将其放入我的Google地理编码脚本中,但它似乎无法正常工作。它应该是唯一的自我提示结果来自美国,但你可以在示例中看到它们是从每个国家建议的。

这是我正在使用的代码:

http://jsfiddle.net/sR4GR/4/

这是原始代码:

<script type="text/javascript" src="//maps.google.com/maps/api/js?sensor=true&libraries=places"></script>
<script type="text/javascript" src="https://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js"></script>

<script type="text/javascript">

    // SET COOKIE FOR TESTING   
$.cookie("country", "us");

    // GEOCODE RESULT
 function geocode(){
    var GeoCoded = { done: false };
    var input = document.getElementById('loc');
    var options = { types: []};
    var country_code = $.cookie('country');
    if (country_code) { options.componentRestrictions= { 'country': country_code }; }
    var autocomplete = new google.maps.places.Autocomplete(input, options);
    $('#searchform').on('submit',function(e){
       if(GeoCoded.done)
            return true;
        e.preventDefault();
        var geocoder = new google.maps.Geocoder();
        var address = document.getElementById('loc').value;

        $('#searchform input[type="submit"]').attr('disabled',true);

        geocoder.geocode({
            'address': address
        },
        function (results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                $('#lat').val(results[0].geometry.location.lat());
                $('#lng').val(results[0].geometry.location.lng());
                GeoCoded.done = true;
                $('#searchform').submit();
            } else {
                $('#searchform input[type="submit"]').attr('disabled',false);
                alert("Damn! We couldn't find this location")
            }

        });

    });

};      
</script>

<body onload="geocode()">
<form name="searchform">
        <input class="kw" id="keyword" placeholder="Keyword"></input>
        <input id="loc" placeholder="Location" type="text"></input>
        <input type="submit" value="Search" id="search">
        <input class="hidden" id="lat" disabled="true" placeholder="lat"></input>
        <input class="hidden" id="lng" disabled="true" placeholder="lng"></input>
</form>

1 个答案:

答案 0 :(得分:1)

上面的代码是正确编写和执行的。 Cookie在Chrome和Firefox中设置。在Safari中,默认Cookie设置为“来自已访问”,这是一个相对严格的设置。要允许设置这些cookie,用户必须更改Safari设置以允许cookie “始终”。

虽然似乎没有一个优雅的解决方法,但一个可能的解决方案是检查cookie是否返回undefined,如果是,请提醒用户“请转到设置并打开Cookie所以我真棒的网站可以在你的安全设备上有效运行.Mmkay?谢谢。“

This thread contains more information on Safari and cookies