HTML页面作为Polymer元素

时间:2016-08-02 04:41:43

标签: polymer-1.0

是否可以将某些HTML页面称为Polymer元素的模板?我看过几个例子,但元素的本地DOM只有HTML标记。我想要这样的东西:

<dom-module id="xyz-element">
    <template>
        <style>
            /* local DOM styles go here */
        </style>
        <!-- local DOM goes here -->
        <import src="any.html"/>
    </template>
    <script>
        Polymer({
            is: 'xyz-element',
        });
    </script>
</dom-module>

提前致谢。

1 个答案:

答案 0 :(得分:1)

我认为从版本0.8开始不可能。见How to import template in polymer?

如果您不打算将HTML部分拆分为较小的部分,而只是将其与JS分开,那么您可以改为导入脚本:

<dom-module id="my-module">
   <template>
     <!-- all of your element's HTML goes here -->
   </template>
</dom-module>

<!-- all of your element's JS goes here -->
<script src="my-module.js"></script>