草庐IT

javascript - 无法读取未定义的属性 '__e3_'

coder 2024-07-14 原文

我已经看到这里散布着一些这样的错误,但是在查看了答案之后,我还没有找到适用于这里的解决方案。一切似乎都工作正常,直到我为“单击”添加事件监听器以打开信息窗口,这是当我在控制台中收到以下错误时:

无法读取未定义的属性“__e3_”

关于导致此错误的原因有什么想法吗?

请注意,我远不是使用 Google map 的专家,所以请在回答任何问题时牢记这一点:)

<div class="acf-map c-location-map" style="width: 100%; height: 700px;">
    <?php 

        // Get a list of all offices, we need their IDs to get their locations for use with the Google map.
        $stockistList = get_posts(array(
            'posts_per_page'    => -1,
            'post_type'         => 'stockist',
        ));

        if (!empty($stockistList))          
        {
            foreach ($stockistList as $singleStockist)
            {
                // Create a simple div that shows the map working correctly.
                printf('<div class="c-location-map__marker marker" data-country="%s">
                            <h4>%s</h4>
                        </div>', 
                        get_field('stockist_country', $singleStockist->ID),
                        $singleStockist->post_title
                    );
            }
        }
    ?>
<!-- .c-location-map --></div>

<script type="text/javascript">
(function($) {

/**
 * Creates a new Google Map using the markers on the page. 
 */
function ts_newMap($el) 
{   
    var $markers = $el.find('.marker');

    // Settings
    var args = {
        zoom                : 3,
        center              : new google.maps.LatLng(0, 0),
        mapTypeId           : google.maps.MapTypeId.ROADMAP,
        scrollwheel         : false,
        styles              : [{"featureType":"all","elementType":"all","stylers":[{"visibility":"simplified"}]},{"featureType":"all","elementType":"geometry","stylers":[{"color":"#0025f0"}]},{"featureType":"all","elementType":"geometry.fill","stylers":[{"visibility":"simplified"},{"color":"#2d3a6d"}]},{"featureType":"all","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"all","elementType":"labels.text.fill","stylers":[{"gamma":0.01},{"lightness":20}]},{"featureType":"all","elementType":"labels.text.stroke","stylers":[{"saturation":-31},{"lightness":-33},{"weight":2},{"gamma":0.8}]},{"featureType":"all","elementType":"labels.icon","stylers":[{"visibility":"off"}]},{"featureType":"administrative.country","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"administrative.province","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"administrative.locality","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"administrative.neighborhood","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"administrative.land_parcel","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"landscape","elementType":"geometry","stylers":[{"lightness":30},{"saturation":30},{"visibility":"simplified"},{"color":"#636363"}]},{"featureType":"landscape","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"poi","elementType":"all","stylers":[{"color":"#636363"}]},{"featureType":"poi","elementType":"geometry","stylers":[{"saturation":20}]},{"featureType":"poi","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"poi.park","elementType":"geometry","stylers":[{"lightness":20},{"saturation":-20}]},{"featureType":"road","elementType":"all","stylers":[{"visibility":"simplified"},{"color":"#636363"}]},{"featureType":"road","elementType":"geometry","stylers":[{"lightness":10},{"saturation":-30}]},{"featureType":"road","elementType":"geometry.stroke","stylers":[{"saturation":25},{"lightness":25}]},{"featureType":"road","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"transit","elementType":"all","stylers":[{"visibility":"simplified"},{"color":"#636363"}]},{"featureType":"transit","elementType":"labels","stylers":[{"visibility":"off"}]},{"featureType":"water","elementType":"all","stylers":[{"lightness":-20},{"visibility":"simplified"},{"color":"#efefed"}]},{"featureType":"water","elementType":"labels","stylers":[{"visibility":"off"}]}]
    };

    // create map               
    var map = new google.maps.Map( $el[0], args);

    // add a markers reference
    map.markers = [];   

    // add markers
    $markers.each(function() {  
        ts_newMapMarker($(this), map);      
    });

    // Centre the map based on what pins have been added.
    ts_mapCentre(map);

    // return
    return map;
}

/**
 * Adds an individual marker to the map.
 */
function ts_newMapMarker($marker, map)
{

    var marker;

    var dataCountry = $marker.attr('data-country');
    console.log("Country: " + dataCountry);

    geocoder = new google.maps.Geocoder();
    function getCountry(country) {
        geocoder.geocode( { 'address': country }, function(results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                map.setCenter(results[0].geometry.location);
                marker = new google.maps.Marker({
                    map: map,
                    position: results[0].geometry.location,
                    icon    : '<?php bloginfo('template_url'); ?>/assets/images/map-marker.png'
                });
            } else {
                alert("Geocode was not successful for the following reason: " + status);
            }
        });
    }

    map.markers.push( marker );

    getCountry(dataCountry);

    // if marker contains HTML, add it to an infoWindow
    if($marker.html())
    {
        // create info window
        var infowindow = new google.maps.InfoWindow({
            content     : $marker.html()
        });

        // show info window when marker is clicked
        google.maps.event.addListener(marker, 'click', function() {
            console.log("open info window");
            infowindow.open( map, marker );
        });
    }

}

/**
 *  Centres the map based on what's been added to it.
 */
function ts_mapCentre(map)
{
    // vars
    var bounds = new google.maps.LatLngBounds();

    // loop through all markers and create bounds
    $.each( map.markers, function(i, marker)
    {
        var latlng = new google.maps.LatLng(marker.position.lat(), marker.position.lng());
        bounds.extend( latlng );
    });

    // only 1 marker?
    if( map.markers.length == 1 )
    {
        // set center of map
        map.setCenter(bounds.getCenter());
        map.setZoom(8);
    }
    else {
        // fit to bounds
        map.fitBounds(bounds);
    }

}

/**
 *  Build the map now the page is ready.
 */
var map = null;
$(document).ready(function()
{
    $('.acf-map').each(function()
    {
        // create map
        map = ts_newMap($(this));
    });
});

})(jQuery);
</script>

最佳答案

电话

geocoder.geocode( { 'address': country }, function(results, status) { ..

是异步的,意思是行

google.maps.event.addListener(marker, 'click', function() {

会在行前调用

marker = new google.maps.Marker({ ..

在您的 ts_newMapMarker 中调用。因此 marker 在您要为其添加事件监听器时不存在。你必须以某种方式重新安排你的代码,所以你在标记初始化后添加监听器,例如:

function ts_newMapMarker($marker, map)
{

    var marker;

    var dataCountry = $marker.attr('data-country');
    console.log("Country: " + dataCountry);

    geocoder = new google.maps.Geocoder();
    function getCountry(country) {
        geocoder.geocode( { 'address': country }, function(results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                map.setCenter(results[0].geometry.location);
                marker = new google.maps.Marker({
                    map: map,
                    position: results[0].geometry.location,
                    icon    : '<?php bloginfo('template_url'); ?>/assets/images/map-marker.png'
                });

                map.markers.push( marker );

                getCountry(dataCountry);

                // if marker contains HTML, add it to an infoWindow
                if($marker.html())
                {
                    // create info window
                    var infowindow = new google.maps.InfoWindow({
                        content     : $marker.html()
                    });

                    // show info window when marker is clicked
                    google.maps.event.addListener(marker, 'click', function() {
                        console.log("open info window");
                        infowindow.open( map, marker );
                    });
                }
            } else {
                alert("Geocode was not successful for the following reason: " + status);
            }
        });
    }

}

关于javascript - 无法读取未定义的属性 '__e3_',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39974466/

有关javascript - 无法读取未定义的属性 '__e3_'的更多相关文章

  1. ruby - Facter::Util::Uptime:Module 的未定义方法 get_uptime (NoMethodError) - 2

    我正在尝试设置一个puppet节点,但ruby​​gems似乎不正常。如果我通过它自己的二进制文件(/usr/lib/ruby/gems/1.8/gems/facter-1.5.8/bin/facter)在cli上运行facter,它工作正常,但如果我通过由ruby​​gems(/usr/bin/facter)安装的二进制文件,它抛出:/usr/lib/ruby/1.8/facter/uptime.rb:11:undefinedmethod`get_uptime'forFacter::Util::Uptime:Module(NoMethodError)from/usr/lib/ruby

  2. ruby-on-rails - rails : "missing partial" when calling 'render' in RSpec test - 2

    我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou

  3. ruby-on-rails - 由于 "wkhtmltopdf",PDFKIT 显然无法正常工作 - 2

    我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-

  4. ruby-on-rails - 'compass watch' 是如何工作的/它是如何与 rails 一起使用的 - 2

    我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t

  5. ruby - 如何将脚本文件的末尾读取为数据文件(Perl 或任何其他语言) - 2

    我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚

  6. ruby-on-rails - 如果为空或不验证数值,则使属性默认为 0 - 2

    我希望我的UserPrice模型的属性在它们为空或不验证数值时默认为0。这些属性是tax_rate、shipping_cost和price。classCreateUserPrices8,:scale=>2t.decimal:tax_rate,:precision=>8,:scale=>2t.decimal:shipping_cost,:precision=>8,:scale=>2endendend起初,我将所有3列的:default=>0放在表格中,但我不想要这样,因为它已经填充了字段,我想使用占位符。这是我的UserPrice模型:classUserPrice回答before_val

  7. ruby-on-rails - 无法使用 Rails 3.2 创建插件? - 2

    我对最新版本的Rails有疑问。我创建了一个新应用程序(railsnewMyProject),但我没有脚本/生成,只有脚本/rails,当我输入ruby./script/railsgeneratepluginmy_plugin"Couldnotfindgeneratorplugin.".你知道如何生成插件模板吗?没有这个命令可以创建插件吗?PS:我正在使用Rails3.2.1和ruby​​1.8.7[universal-darwin11.0] 最佳答案 随着Rails3.2.0的发布,插件生成器已经被移除。查看变更日志here.现在

  8. ruby-on-rails - Rails 3.2.1 中 ActionMailer 中的未定义方法 'default_content_type=' - 2

    我在我的项目中添加了一个系统来重置用户密码并通过电子邮件将密码发送给他,以防他忘记密码。昨天它运行良好(当我实现它时)。当我今天尝试启动服务器时,出现以下错误。=>BootingWEBrick=>Rails3.2.1applicationstartingindevelopmentonhttp://0.0.0.0:3000=>Callwith-dtodetach=>Ctrl-CtoshutdownserverExiting/Users/vinayshenoy/.rvm/gems/ruby-1.9.3-p0/gems/actionmailer-3.2.1/lib/action_mailer

  9. ruby-on-rails - 在混合/模块中覆盖模型的属性访问器 - 2

    我有一个包含模块的模型。我想在模块中覆盖模型的访问器方法。例如:classBlah这显然行不通。有什么想法可以实现吗? 最佳答案 您的代码看起来是正确的。我们正在毫无困难地使用这个确切的模式。如果我没记错的话,Rails使用#method_missing作为属性setter,因此您的模块将优先,阻止ActiveRecord的setter。如果您正在使用ActiveSupport::Concern(参见thisblogpost),那么您的实例方法需要进入一个特殊的模块:classBlah

  10. ruby - 无法运行 Rails 2.x 应用程序 - 2

    我尝试运行2.x应用程序。我使用rvm并为此应用程序设置其他版本的ruby​​:$rvmuseree-1.8.7-head我尝试运行服务器,然后出现很多错误:$script/serverNOTE:Gem.source_indexisdeprecated,useSpecification.Itwillberemovedonorafter2011-11-01.Gem.source_indexcalledfrom/Users/serg/rails_projects_terminal/work_proj/spohelp/config/../vendor/rails/railties/lib/r

随机推荐