我是新來EmberJS並按照本教程: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/
目前我已經得到了所有直到'單用戶路線'部分的代碼。
我已經完全按照教程,但是當我去http://ember.lusenet.com/#/users時,出現錯誤'斷言失敗:URL'/ users'與應用程序中的任何路徑都不匹配'。我真的不知道發生了什麼問題。任何幫助表示讚賞!
據我所知,在所提供的URL中,除app.js之外的所有其他文件都不包含在index.html文件中。毫無疑問,它不會找到#/用戶/沒有路線。 – dentuzhik