JS:
func(a, 'b', function(e, obj) {
//does some stuff
}.another_func(obj));
我的咖啡:
func(a, 'b', (e, obj) ->
#does some stuff
.another_func(obj)
但这似乎不起作用。
答案 0 :(得分:2)
将函数包装在显式括号中:
func a, "b", ((e, obj) ->
#does some stuff
).another_func obj
(或者,使用显式方法调用):
func(a, "b", ((e, obj) ->
#does some stuff
).another_func(obj))