2013-12-09 107 views
0

我是新來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'與應用程序中的任何路徑都不匹配'。我真的不知道發生了什麼問題。任何幫助表示讚賞!

+0

據我所知,在所提供的URL中,除app.js之外的所有其他文件都不包含在index.html文件中。毫無疑問,它不會找到#/用戶/沒有路線。 – dentuzhik

回答

0

你用https://github.com/stefanpenner/ember-app-kit?你的app.js文件只有:

window.App = Ember.Application.create(); 

看起來像咕嚕聲是正確連接你的JS文件。

+0

我不使用Ember應用套件,您說得對,我沒有一個咕嚕聲文件。我在看你發佈的Github,但我無法弄清楚哪個文件沒有連接。你有什麼建議嗎? – MrWorldpeace