gpt4 book ai didi

javascript - 这个 javascript "translate"如何转换为 CoffeeScript?

转载 作者:行者123 更新时间:2023-12-02 17:01:41 24 4
gpt4 key购买 nike

JS:

func(a, 'b', function(e, obj) {
//does some stuff
}.another_func(obj));

我的咖啡:

func(a, 'b', (e, obj) ->
#does some stuff
.another_func(obj)

但这似乎不起作用。

最佳答案

将函数括在显式括号中:

func a, "b", ((e, obj) ->
#does some stuff
).another_func obj

(或者,使用显式方法调用):

func(a, "b", ((e, obj) ->
#does some stuff
).another_func(obj))

关于javascript - 这个 javascript "translate"如何转换为 CoffeeScript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25651089/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com