在 CoffeeScript 中,如何使用匿名函数作为参数进行函数调用?
Posted
技术标签:
【中文标题】在 CoffeeScript 中,如何使用匿名函数作为参数进行函数调用?【英文标题】:In CoffeeScript, how can you make a function call with anonymous functions as parameters? 【发布时间】:2011-10-06 22:00:58 【问题描述】:下面给出了与匿名函数相关的语法错误:
my_function = (f, x, str) ->
alert str + f(x)
my_function (x) -> 1 + x, 12, "The answer is: "
以下作品:
my_function = (f, x, str) ->
alert str + f(x)
increment = (x) -> x + 1
my_function increment, 12, "The answer is: "
【问题讨论】:
***.com/questions/6463052/… 的副本。另见***.com/questions/6459630/… 【参考方案1】:my_function ((x) -> x + 1), 12, "The answer is: "
这应该可以解决问题。
【讨论】:
以上是关于在 CoffeeScript 中,如何使用匿名函数作为参数进行函数调用?的主要内容,如果未能解决你的问题,请参考以下文章
RequireJS - 垫片为CoffeeScript的脚本
如何将 JavaScript forEach 循环/函数转换为 CoffeeScript