我有这个程序(从我的实际程序简化),我无法从传递给视图的对象的方法访问所有变量,尽管我可以从 get 访问它。我在这里错过了什么吗?
all = ['hello', 'world']
require('zappajs') ->
@get '/foo': ->
console.log all
@render 'foo'
@view foo: ->
console.log all
我得到一个异常,在使用咖啡 hello.coffee 运行时没有定义。