我希望能夠調用其他文件中聲明的CoffeeScript和JS功能從扎帕的應用程序。我無法讓它工作。扎帕JS @include CoffeeScript的方法不起作用
我嘗試使用@include作爲對zappajs crashcourse解釋...
,但我得到
TypeError: Object # has no method 'include'
這裏是我的測試應用程序的代碼:
#app.coffee
require('zappajs') ->
@get '/': -> @include 'call'
與這裏的功能我正嘗試撥打另一個文件。
#call.coffee
@include = ->
"call me"