我有一些問題獲取Ember.js拿起和呈現句柄模板文件。我得到了我的瀏覽器的調試控制檯以下錯誤:無法獲取模板部分呈現在Ember.js
Error: <(subclass of Welcome.LoginView):ember166> - Unable to find template "login_view".
我在emberjs代碼下面的代碼在我的app.js文件:
Welcome = Ember.Application.create();
Welcome.LoginView = Ember.View.extend({
templateName: 'login_view'
});
我也有我的指數下面的代碼片段。 HTML文件:
<script type="text/x-handlebars">
{{view Welcome.LoginView}}
</script>
最後,相對於app.js文件我有文件模板/ login_view.handlebars,其中包含模板的內容來呈現:
<form class="form-inline">
<fieldset>
<input type="text" name="email" placeholder="email address">
<input type="password" name="password" placeholder="password">
<button class="btn btn-primary" type="submit">Sign In</button>
<!-- ... -->
</fieldset>
</form>
該錯誤似乎表明它無法找到句柄模板。當我查看生成的HTML時,我在頁面上看不到上述表單。
任何人都可以闡明我做錯了什麼嗎?