按要求在此处发布原始帖子可以在这里找到 您好,我想使用 Ubuntu 13 构建 ember.js。我已经克隆了官方 Github 项目,将 cd 克隆到项目中,并且如我所做的自述文件中所述:bundle install rake dist屏幕上没有显示错误,因此我得到了图像中显示的目录
我想使用 ember 和 ember-data,所以我在我的测试项目中包含了 ember.js ember-data-deps.js 文件。问题是我收到 TypeError: App.Router is undefined 我在我的 client.js 文件中使用它来初始化 ember
this.App = Ember.Application.create();
App.Router.map(function() { this.route('contributors'); this.route('contributor', {path: '/contributors/:contributor_id'}); });
我在构建过程中做错了吗?我应该在我的项目中包含其他一些 js 文件吗?提前谢谢你。