tutorial template guide meteor meteor-blaze

template - meteor html



Cómo NO SI dentro de la plantilla de{{#each}} (1)

¿Cómo puedo renderizar esta Plantilla Meteor Blaze? Me gustaría usar el negativo del IF, pero no encuentro en ningún lado cómo usarlo.

<ul> {{#each pages}} {{#if (--NOT--) isCover }} <li> some content {{value}} </li> {{/if}} {{/each}} </ul>

Investigación anterior no se encontró la solución https://github.com/meteor/meteor/wiki/Using-Blaze Buscar igualdad en las barras espaciales?

Nota: si uso solo la declaración if funciona sin problemas, también podría hacerlo y else pero me gustaría tenerla solo con la solución if(!isCover)


Necesitas usar el {{#unless}} .

http://blazejs.org/

{{#unless isCover}} <li> some content {{value}} </li> {{/unless}}