新 Ember 应用出现黑屏

New Ember app gives blank screen

我是 ember 的新手,在我的浏览器中执行 introductory tutorial to build a simple app. When I create a new app and start server, I try visiting the localhost page (http://localhost:4200/) 但页面是空白的。浏览器 window 标题是我的应用名称,但没有 "Welcome to Ember" 应有的文本。 ember 检查员也说 "Ember application not detected!" 虽然小 ember 图标出现在 Firefox 的地址栏中表明有一个 ember 应用程序。

我已尝试重新启动 tutorial 3 times now and come up with same results. I have followed all set-up steps provided here. The only thing I did different or in addition to the turorial is I had to run sudo chown -R $USER /usr/localbecause of permissions issues

到目前为止我所做的就是安装 node、npm、bower、ember-cli 2.2.0-beta.2.,然后 运行 这几个命令:

ember new ember2-blog
cd ember2-blog
ember server

终端给我一条 "Build successful - 7016ms." 消息,但我转到 http://localhost:4200/ 并看到空白页面...检查员说 "no ember app detected"。好像我错过了一些简单但无法弄清楚的东西。跟权限有关系吗?请并感谢您的帮助。

这是 jQuery 新版本导致的错误。现在您可以更改 bower.json 文件中的以下行。然后 运行 bower install 它应该可以工作。

"jquery": "^1.11.3",

"jquery": "1.11.3",

ember.js 的新版本是 imminent which should fix this