browserify+nunjucksify
-ed プリコンパイル済みテンプレートを an でレンダリングしようとしていますampersand-view
。
これは期待どおりに機能します。
var tpl = require('app1/template-1.nunj');
console.log(tpl.render({name: 'flemming', isDancing: 'perhaps'}))
これはしません:
var MainView = View.extend({
template: tpl.render,
bindings: {
'model.name': '[data-hook=name]'
}
});
私が得るエラーは
Uncaught TypeError: Cannot read property 'dev' of undefined
私の知る限り、これはthis
ヌンジャックの が間違っていることを意味します。Ampersand-view
レンダリング機能に関しては、それ自体を設定しthis
、ヌンジャックが期待するものを覆い隠しthis
ます。
解決策はありますか?