我在我的项目中使用django-coffeescript。但有一些转换。
在我的hello.coffee文件中:
hello = ()->
console.log 'Hello'
但它转换为:
// Generated by CoffeeScript 1.6.3
(function() {
var hello;
hello = function() {
return console.log('hello');
};
}).call(this);
我想:
var hello = function() {
return console.log('hello');
}
答案 0 :(得分:1)
也许您可以覆盖COFFEESCRIPT_EXECUTABLE
中的settings.py
,如此:
COFFEESCRIPT_EXECUTABLE = 'coffee -b'