我似乎找不到这个问题的简明答案。调用 @_instanceMethod 而不是函数绑定本身时,从 _otherInstanceMethod 返回值的正确咖啡脚本方法是什么?
x = _instanceMethod: () ->
@_otherInstanceMethod key: 'value'
编辑(感谢评论者)
这将返回:
x = function () {
[...] # function body omitted
});
代替
x = 'some value returned by _otherInstanceMethod'
我希望返回值而不是绑定到 _otherInstanceMethod 的函数