如何在 CoffeeScript 中新定义的函数上调用函数
我正在习惯 CoffeeScript,并且有一个可能是愚蠢的问题:如何在匿名函数上调用函数?这是 javascript 示例
baz = function() {
this.do_something_to_this_function
}
foo = {
bar: function() {
// do something to some data
}.baz()
}
我如何在 CoffeeScript 中做同样的事情?
我知道我可以这样做:
barfunc = => blah blah blah
foo = {
bar: barfunc.baz()
}
看来一定有更漂亮的方法?
Am getting used to CoffeeScript, and have what is probably a stupid question: how do I call a function on an anoymous function? So here's the javascript example
baz = function() {
this.do_something_to_this_function
}
foo = {
bar: function() {
// do something to some data
}.baz()
}
How would I do this same thing in CoffeeScript?
I know I could do this:
barfunc = => blah blah blah
foo = {
bar: barfunc.baz()
}
It seems there must be a prettier way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需添加括号即可。
Just add parentheses.