javascript - 使用 HTMLImports.whenReady 在 Chrome 中不起作用

标签 javascript polymer web-component

我有一个使用 HTMLImports.whenReady 的 Web 组件,以确保某些事情在正确的时间触发,问题是这修复了我在 IE 和 Firefox 中遇到的错误,但现在它在 Chrome 中不起作用。

所以在网站页面上我有这个:

<link rel="import" href="/static/template/components/result-map.html">
<link rel="import" href="/static/template/components/result-options.html">
<link rel="import" href="/static/template/components/advanced-modal.html">
<link rel="import" href="/static/template/components/map-modal.html">

<div class="row-fluid">
    <div id="component" class="span12">
        <div class="well">
            <!-- TMPL_IF Listings -->
            <div class="row-fluid">
                <small><em>Press a map marker for more information</em></small><br />
                <result-map></result-map>
            </div>
            <!-- /TMPL_IF -->
        </div>
    </div>
</div>

<script>    
/*GENERATE MAP MARKERS*/
HTMLImports.whenReady(function(){
    <!-- TMPL_IF Listings -->   
        <!-- TMPL_LOOP Listings -->
            <!-- TMPL_IF have_geocode -->
                markers.push({
                    latLng: [<!-- TMPL_VAR latitude -->, <!-- TMPL_VAR longitude -->],
                    data: '...',
                    options: {
                        icon: "/static/images/mapmarker.png",
                        title: "<!-- TMPL_VAR street_no --> <!-- TMPL_VAR street -->, <!-- TMPL_VAR city -->, <!-- TMPL_VAR state --> <!-- TMPL_VAR zip -->"
                    }
                });
            <!-- TMPL_ELSE -->
                markers.push({
                    address:"<!-- TMPL_VAR street_no --> <!-- TMPL_VAR street -->, <!-- TMPL_VAR city -->, <!-- TMPL_VAR state --> <!-- TMPL_VAR zip -->",
                    data: '...',
                    options: {
                        icon: "/static/images/mapmarker.png",
                        title: "<!-- TMPL_VAR street_no --> <!-- TMPL_VAR street -->, <!-- TMPL_VAR city -->, <!-- TMPL_VAR state --> <!-- TMPL_VAR zip -->"
                    }
                });
            <!-- /TMPL_IF -->
        <!-- /TMPL_LOOP -->
    <!-- /TMPL_IF -->
});
</script>

然后 polymer 网络组件看起来像这样

<dom-module id="result-map">
<template>
    <div id="map_canvas"></div>
</template>

<script>
var markers = [];

HTMLImports.whenReady(function(){
    $('#map_canvas').gmap3({
        map:{
            options:{ 
                streetViewControl: false,
                mapTypeId: google.maps.MapTypeId.ROADMAP,
                mapTypeControl: false,
                mapTypeControlOptions: {
                center: true,
                zoom: 10,
            },
         }
        },
        marker:{
            values: markers,
            options:{
                draggable: false
            },
            events:{
                click: function(marker, event, context){
                    $('#map-modal').empty().append(context.data).modal('show');
                    $(this).gmap3('get').panTo(marker.getPosition());
                },
            },
        },
        autofit:{maxZoom: 16},
    })
});

Polymer({
    is: 'result-map',

    // Fires when an instance of the element is created
    created: function() {},

    // Fires when the local DOM has been fully prepared
    ready: function() {},

    // Fires when the element was inserted into the document
    attached: function() {},

    // Fires when the element was removed from the document
    detached: function() {},

    // Fires when an attribute was added, removed, or updated
    attributeChanged: function(name, type) {}
});
</script>
</dom-module>

这背后的想法是, map 标记必须在循环服务器端制作,所以我有时在整个站点中标记是不同的,然后将它们加载到公共(public) Web 组件中并推送标记进入“标记”对象。

当我最初编写脚本时,我在 document.ready 上触发,这会导致 IE 和 FF 无法加载标记,因为在加载组件之前不会创建 VAR,因此更改为 HTMLImports.whenReady 这允许这样做会发生,但现在由于某种原因破坏了 chrome。

重新阅读我的问题,我想具体一点,对象标记在 chrome 中为空,但在 IE 中不是空的,而是上面的 FF。

最佳答案

当您在 Chrome 中将回调注册到 HTMLImports.whenReady 时,该事件已经触发。您的回调不会被调用,因为它注册得太晚了。通过您的解决方案,您可以在第一个标记分配中捕获 Chrome,在第二个分配中捕获填充浏览器。 一般处理此问题的另一种方法是:

if (HTMLImports.ready) {
   doStuff();
} else {
   HTMLImports.whenReady(doStuff);
}

这样,您就可以确保 doStuff 函数只会被调用一次。

关于javascript - 使用 HTMLImports.whenReady 在 Chrome 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32577633/

相关文章:

javascript - 将输入的值属性绑定(bind)到属性

javascript - 弹出时为对话框添加自定义动画

javascript - 如果在定义元素之前设置了同名属性,则 CustomElement 的初始化会删除类方法(也可以获取/设置)

javascript - 如何从模型数据中预选纸张下拉菜单中的纸张项目?

css - 如何在 CSS 变量回退中使用逗号?

polymer - 如何更改端口以运行 polymer 项目?

polymer - 使用纸质输入输入时铁表单未提交

javascript - 使用 jquery 的 html 表格预览

javascript - JS根据文本内容自定义表格排序

javascript - 行数可变时的动态数据表