Require.jsでEmber.jsを使用しようとしていますが、このコードでいくつかのルートを作成しようとすると、奇妙なエラーが発生します。
define([
'lib/ember/load',
"app/views/main-views",
"app/views/nav-views",
"app/views/body-views"
], function(em, MainViews, NavViews, BodyViews) {
// Create a local namespace for the app
var App = Ember.Application.create();
em.App = App;
App.Router.map(function() {
this.route("about");
});
// Export it from the module.
return App;
});
私は持っています:cannot call map of undefined
。
たぶん、それはRequireJS構成の問題ですか?しかし、私はすべてのデータが正しくロードされていると思います。
どうもありがとうございます。