我一直试图让 sprockets-commonjs 在我的 Rails 项目上工作一段时间,但没有运气。
这就是我正在做的事情:
宝石文件
...
gem 'jquery-rails'
gem 'twitter-bootstrap-rails', :git => 'http://github.com/seyhunak/twitter-bootstrap-rails.git'
gem "ember-rails", :git => "https://github.com/emberjs/ember-rails.git", :branch => "master"
gem 'sprockets-commonjs'
...
应用程序/资产/javascripts/hello.module.js
module.exports = function () {
return "hello world!";
};
这是我运行应用程序时得到的:
Uncaught ReferenceError: module is not defined 。
有什么我想念的吗?