使用 Polymer importHref 动态加载 HTML 页面

Dynamically Load HTML page using Polymer importHref

我正在编写一个简单的元素,它使用 Polymer 1.0 的辅助函数 importHref() 加载 html 文件。页面加载,但不是 html 渲染到页面,而是 [object HTMLDocument].

当我记录成功的回调时,导入的页面被包裹在一个 #document 对象中(不确定这里的术语)。但是,信息都在控制台中。

所以,我的问题是:如何将 html 呈现到页面?

元素:

<dom-module id="content-loader">

<template>
    <span>{{fileContent}}</span>
</template>

<script>

Polymer({

    is: "content-loader",

    properties: {
        filePath: {
            type: String
        }
    },

    ready: function() {
        this.loadFile();
    },

    loadFile: function() {
        var baseUrl;

        if (!window.location.origin)
        {
            baseUrl = window.location.origin = window.location.protocol + "//" + window.location.hostname + (window.location.port ? ':' + window.location.port: '');
        }
        else
        {
            baseUrl = window.location.origin;
        }

        //import html document and assign to fileContent
        if(this.filePath)
        {
            this.importHref(baseUrl + this.filePath, function(file){
                this.fileContent = file.target.import;
                console.log(this.fileContent); //logs fine
            },
            function(error){
                console.log(error);
            });
        }
    }

});

</script>

正在使用:

<content-loader file-path="/app/general/contact.html"></content-loader>

<span>{{fileContent}}</span> 会将 fileContent 转换为字符串,这就是为什么您会看到 [object HTMLDocument](这就是您在 [= 上调用 toString() 时得到的结果15=] 对象)。

一般来说,Polymer 不会让您绑定到 HTML 或节点内容,因为它存在安全风险。

您拥有的fileContent是一个document,这意味着它是DOM个节点的集合。您如何使用该文档取决于您加载的内容。呈现节点的一种方法是将 fileContent.body 附加到本地 DOM,如下所示:

Polymer.dom(this.root).appendChild(this.fileContent.body);

这是一个更完整的示例 (http://jsbin.com/rafaso/edit?html,output):

<content-loader file-path="polymer/bower.json"></content-loader>

<dom-module id="content-loader">

  <template>
    <pre id="content"></pre>
  </template>

  <script>

    Polymer({
      is: "content-loader",
      properties: {
        filePath: {
          type: String,
          observer: 'loadFile'
        }
      },

      loadFile: function(path) {
        if (this.filePath) {
          console.log(this.filePath);
          var link = this.importHref(this.filePath, 
            function() {
              Polymer.dom(this.$.content).appendChild(link.import.body);
            },
            function(){
              console.log("error");
            }
          );
        }
      }
    });

  </script>
</dom-module>