I am trying to moment.js function moment().format() inside my backbone template as shown below.
<td>
<%
var x = new Date(start); print(moment().format())
%>
</td>
it doesn't work. It gives an error
Uncaught ReferenceError: moment is not defined
But it works within my view module. For example, if I call in the init function, it logs the moment time value correctly.
initialize : function() {
/* Listen to our collection for reset event */
this.collection.on('reset', this.render, this);
console.log("moment", moment().format());
},
what am i missing here..?
PS: I am loading moment.js via require js in my view module.
As Roman says, moment.js is not in the scope of the template rendered. But, Marionette makes it easy to put it in scope. For that purpose you can use
templateHelpers
. Like this:templateHelpers
will make itsmoment
property available in your template as a variable namedmoment
. You don't change a thing in the template itself.