如何从Polymer模板中访问自定义元素的主体?

时间:2014-01-27 00:11:42

标签: templates interpolation polymer

我有一个自定义的Polymer元素<foo>。在<template>元素中,如何访问<foo>元素的主体?也就是说,我该如何安排:

<foo>
  <em>Clem</em>
</foo>

转化为

Hello, <em>Clem</em>

通过<template>,可能看起来像

<polymer-element name="foo">
  <template>
    Hello, ???
  </template>
</polymer-element>

1 个答案:

答案 0 :(得分:1)

ebidel中指出Custom Polymer element <x-strong> that works like the builtin <strong>?时,您需要使用<content>标记创建插入点。

我还应该指出,您的元素名称需要包含符合规范的破折号。因此,它应该是<x-foo><my-foo>,而不仅仅是<foo>