我是EmberJS的新手并遵循本教程:
http://coding.smashingmagazine.com/2013/11/07/an-in-depth-introduction-to-ember-js/
目前我有这个文件结构:
index.html
static/js/app.js
static/js/compononents
static/js/controllers/usersController.js
static/js/handlebars-v1.1.2.js
static/js/helpers
static/js/models/user.js
static/js/router.js
static/js/routes/usersRoute.js
static/js/store.js
static/js/templates/application.hbs
static/js/templates/index.hbs
static/js/templates/user.hbs
static/js/templates/users.hbs
static/js/views/
目前我已经获得了所有代码,直到'SINGLE USER ROUTE'部分。
我完全按照教程进行操作,但是当我去http://ember.lusenet.com/#/users时,我收到错误'断言失败:网址'/用户'与您应用中的任何路由都不匹配'。我真的不知道出了什么问题。任何帮助表示赞赏!
答案 0 :(得分:0)
您使用https://github.com/stefanpenner/ember-app-kit了吗?你的app.js文件只有:
window.App = Ember.Application.create();
似乎grunt没有正确连接你的JS文件。