我在我的 rails 3.2.6 项目中使用 rails-backbone、coffeescript gems。
square = (x) -> x * x
alert square(5)
这是它生成的 blog.js.coffee 脚本文件:
(function() { var square; square = function(x) {return x * x;}; alert(square(5));
我需要square()
在另一个视图文件中调用该方法。
我怎么能这么叫?我做错了什么吗?