Backbone Patternsの JST Templates と Partials について読み、自分のプロジェクトで実装しようとしていました。
テンプレートのコードは次のとおりです。バックボーンjsをアンダースコアjsとCoffeeScriptで使用しています-
App.Abc.JST = {}
App.Abc.JST['person/contact'] = _.template '''
<h4>Something</h4><a href="dev.app.com/<%= itemTemplate() %>"><%= itemTemplate() %></a>
<b><%= itemTemplate() %></b>
'''
itemTemplate: _.template '''
Common Code here
'''
エラーが発生しています: itemTemplate is not defined
。
私は何か間違ったことをしていますか?御時間ありがとうございます。