0

我正在尝试计算模板 dom-repeat 中的子节点。我正在使用 firebase-query 提取数据。

在 dom-repeat 中,我想显示提案对象的子节点数。该图显示了 firebase 中的数据结构,dom-repeat 循环所有作业。

在此处输入图像描述

   <template is="dom-repeat" indexAs="index" id="joblist" items="{{jobs}}" as="job">
    <div class="job-container" on-transitionend="_getData">
     <paper-card class="cards" heading="{{job.name}}" elevation="0">
        <paper-ripple id="ripple" recenters></paper-ripple>
        <div class="card-content">{{job.description}}</div>
      <div class="card-actions">
       <div class="horizontal justified">
        <iron-label class="g_lbl green">
            &nbsp;{{job.budget}}&nbsp;&nbsp;
        </iron-label>
        <iron-label class="g_lbl grey">
            &nbsp;[[_computeproposals(job.proposals)]] Propuestas&nbsp;
        </iron-label>
       </div>
      </div>
     </paper-card>
    </div>
   </template>

我将提案数据传递给函数_computeproposals(job.proposals),这里我需要返回提案中子节点的数量:

    _computeproposals:function(proposals){
        //should return the number of proposals here
        console.log(proposals);
            return <<number of child nodes in proposals>>;
        }

console.log(提案): 在此处输入图像描述

4

2 回答 2

1

它看起来像一个对象,所以它没有.length,使用Object.keys这个:

Object.keys(proposals).length;
于 2016-11-25T07:09:04.953 回答
0

这只是一个数组,对吧?在这种情况下,您可以使用proposals.length. [[job.proposals.length]]在您的模板或return proposals && proposals.length || 0;函数中使用。

于 2016-11-24T23:39:09.963 回答