METEOR JS。每个循环中的变量

时间:2016-11-06 10:22:59

标签: javascript meteor

HTML

<template name="contact">
  ...
  {{> FORMULAIRE descrip =descripFormContact }}
  ...
</template>

<template name="FORMULAIRE" >
  <form id={{descrip.idForm}} >
    <fieldset id="idFieldSet{{descrip.idForm}}">
      {{#each descrip.champs}}
        <span id="idSpanLabel{{descrip.idForm}}" ....>{{this.label}}</span>
      ...
      
      {{/each}}
    </fieldset>
  </form>
</template>

JS

Template.contact.helpers({
        descripFormContact: {
            idForm: 'formContact',
            champs: [{
                nomChp: 'prenom', label: 'Prenom : ', type: 'text', oblig:true,
            }]
        }
})

一切正常,但我似乎无法在循环“each”中找到“descrip.idForm”的值。

有人能告诉我为什么,在循环“each”中,“descrip.idForm”为空,那么循环的外部等于“formContact”

感谢您的回答

YC

1 个答案:

答案 0 :(得分:0)

您可以在FORMULAIRE模板调用中删除descript和=之间的空格。

Regs,yann