对于集合,我想使用 docpad.coffee 中定义的助手,例如
getLang: (inLang) ->
"/" + inLang + "/"
...
myCollection: ->
@getCollection("html").findAllLive().on "add", (model) ->
model.setMeta({ url: @getLang("en") + defaultUrlPartGoesHere })
但无法让 FilesCollection 知道我的助手:/
如何设置辅助函数以可用于集合定义?