我正在嘗試將骨幹應用程序緩慢轉換爲Angular。它實際上使用木偶來精確。在我目前的每個Marionette視圖中,他們都是Marionette.ItemView。對於模板顯示,我這樣做:將Angular html模板傳遞給骨幹模板
get template() {
return _.template(nameOfMyTemplate, { myModel: this.model });
}
nameOfMyTemplate將是我AwesomeTemplate.template.html文件,它是我的解決方案。
我想知道如何才能在沒有在骨幹或木偶應用程序中調用_.template的情況下傳遞我的template.html?因此,在我的骨幹視圖或marionette.itemview的某處,我可以做
template: NewAwesomeAngularTemplate.template.html // where NewAwesomeAngularTemplate.template.html is a file in my solution
有沒有人遇到過這個呢?我無法找到有關人們如何將他們的應用程序從Backbone或Marionette轉換爲Angular的更多信息。提前致謝!
這似乎不相關 –