%button.btn.btn-primary{onclick: "test()"} submit
.test
我的 view 中(production 模型的 new.html.haml)包含这样一段代码;在 productions.js.coffee 中则包含
test = ->
$(".test").append("test")
这样的代码,似乎由于 coffee 自动闭包的特性,当点击按钮时提示 Uncaught ReferenceError: test is not defined
,当我把这段代码放到 application.js 中时,则可以成功。(这个编译后的 producitons.js 是存在的,可以找到,但是加了闭包)