Polymer - 如何查询嵌套组件

时间:2016-08-02 05:02:01

标签: polymer

我有一个嵌套的组件,如下所示:

<first-component>
   <second-component>
      <third-component></third-component>
   </second-component>
</first-component>

如何查询选择第三个组件?

在Chrome中,document.querySelector('third-component')可以使用,但它不适用于Firefox。

谢谢你们:)

1 个答案:

答案 0 :(得分:0)

如果您使用的是聚合物定义,则可以使用SELECT b.id1, c.id2 FROM Zus0 a INNER join Zus1 b on CAST(b.id1 as BIGINT)=CAST(a.id1 as BIGINT) INNER join Zus2 c on CAST(c.id2 as BIGINT)=CAST(a.id2 as BIGINT)

否则您只需在代码上设置this.$$(third-component)即可。然后,如果使用Polymer,则可以使用iddocument.querySelector('#id')