There are a few different places that I put view helpers with Backbone.js:
If the helper is specific to a certain view, put it right in the view definition:
var MyView = Backbone.View.extend({
tagName: 'div',
events: {
...
},
initialize: function() { ... },
helperOne: function() {
// Helper code
},
anotherHelper: function() {
// Helper code
},
render: function() {
... this.helperOne() ...
}
});
If the helper will be used by all views, extend the Backbone View class:
_.extend(Backbone.View.prototype, {
helper: function() {
// Helper code
}
}
If you need more complicated sharing of helpers between views, have views extend each other:
var MyOtherView = MyView.extend({
// ...
render: function() {
... this.helperOne() ...
}
});
I'm not sure what is best practice (or if there is an established best practice), but these patterns seem fairly clean and work well.