[Meteor Js] – How to call functions in the page ?

For do this you can use:

Template.expensesItem.helpers({ })

Example :

Code JS File:

Template.myTemplate.helpers({
    'isToShow':function(userId) {
        if ( userId == Meteor.userId() ){
            return true;
        } else {
            return false;
        }
    }
});

Code HTML file:

{{#if isToShow userId }} {...} {{/if}}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s