聚合物升级后,纸张复选框在作为HTML导入加载时创建两次

时间:2016-06-23 19:39:46

标签: javascript html polymer paper-elements html-imports

问题

我将聚合物从0.5升级到1.5,纸张复选框现在出现两次。

的进展

我尝试运行polyup并完成了整个聚合物升级指南,但没有一个程序解决了这个问题。我找到了两件事:

1

正确工作时,html看起来像

paper-checkbox
  checkboxContainer
  checkboxLabel

我在我的案例中发现它看起来像

paper-checkbox
  checkboxContainer
  checkboxLabel
    checkboxContainer
    checkboxLabel

这让我相信聚合物正在处理纸张复选框两次。但是,我仔细检查了一下,我没有多次加载paper-checkbox.html,这是我在这方面唯一的想法。

2

主要内容是在一个fly-in中,其部分作为html导入加载。我发现导入的html中的纸张复选框显示了这种行为,但是如果我将纸张复选框硬编码到其中,它可以正常工作。

问题

什么会导致聚合物尝试处理纸张复选框两次?那么html导入会导致这种情况呢?

编辑:

根据托尼的请求进行代码转储。

default.html中

<head>
    <title>Title</title>
    <meta charset="utf-8" />
    <!-- Stylesheets -->
    <link rel="stylesheet" type="text/css" href="styles//font-awesome.css?ver=v2.3.2-22-g83c2652" />
    <link rel="stylesheet" type="text/css" href="scripts/jquery-ui/jquery-ui.min.css?ver=v2.3.2-22-g83c2652" />
    <link rel="stylesheet" type="text/css" href="styles/main.css?ver=v2.3.2-22-g83c2652" shim-shadowdom />
    <!-- favicon -->
    <link rel="icon" type="image/ico" href="img/favicon.ico" />

    <!-- HTML Imports -->
    <script src="bower_components/webcomponentsjs/webcomponents-lite.min.js"></script>
    <link rel="import" href="bower_components/polymer/polymer.html">
    <link rel="import" href="bower_components/paper-checkbox/paper-checkbox.html">
    <link rel="import" id="doc_nav" href="page/nav.html" onerror="handleError(event)">
    <link rel="import" id="order_billing" href="page/billing.html" onerror="handleError(event)">
    <link rel="import" id="order_submit" href="page/certify.html" onerror="handleError(event)">
</head>
<body>
  // Some generic html then this, the section the imports are added to
  <article class="fly-in transition-out">
  </article>

  // The relevant script
  <script type="text/javascript">
    // when imports are loaded, render starting page
    window.addEventListener('HTMLImportsLoaded', function () {
      init();
    });
  </script>
</body>

import.js相关功能

// render all the pages of order type to the DOM then hide them
function renderOrderPages(){
    var pages = document.querySelectorAll("link[id^='order_']");
    var article = document.querySelector("article");

    for (var i = 0; i < pages.length; ++i) {
        var pg_content = pages[i].import;
        var pg_section = pg_content.querySelector('section');
        pg_section.style.display = "none";
        article.appendChild(pg_section.cloneNode(true));
        bind_page_events(pg_section.id);
    }
}

1 个答案:

答案 0 :(得分:1)

正如您所发现的,深度节点克隆(cloneNode(true)无法正确处理Polymer 1.x中的<paper-checkbox>模板(包含在<dom-module>中),而它以前在Polymer 0.5中没有问题(容器是<polymer-element>)。

虽然我无法确切地解释为什么cloneNode(true)在Polymer 1.x中复制了paper-checkbox的模板,但我可以提供另一种选择:

<section>更改为<template>,将cloneNode()更改为importNode()

for (var i = 0; i < pages.length; ++i) {
    var pg_content = pages[i].import;
    var template = pg_content.querySelector('template');
    var node = document.importNode(template.content, true);
    article.appendChild(node);
}

plunker