如何将属性传递给聚合物中的索引文件

时间:2015-12-30 23:59:42

标签: polymer-1.0

我有一个web组件,我从firebase获取一个字符串,我想在索引页面中使用该字符串,但我不知道如何获取该值以在我的索引文件中使用它。我将我的网络组件称为:

<template id="app" is="dom-bind">        
   <sel-edo-autonomo myPropertie="{{I_want_here_the_value_of_the propertie}}">
   </sel-edo-autonomo>

    <paper-input label="the value of the propertie is:" id="campoPais">{{myPropertie}}</paper-input>
</template>

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

你可以这样做。通过在JavaScript中选择dom-bind模板,然后访问您想要的属性,如下所示:

<template id="app" is="dom-bind">        
   <sel-edo-autonomo myPropertie="{{I_want_here_the_value_of_the propertie}}">
   </sel-edo-autonomo>

    <paper-input label="the value of the propertie is:" id="campoPais">{{myPropertie}}</paper-input>
</template>

<script type="text/javascript">
  var app = document.querySelector("#app");
  var myVar = app.myPropertie;
</script>

自动绑定模板here

有一些基本信息