使用 do 在 CoffeeScript 中返回一个没有参数的函数

发布于 2025-01-06 04:10:13 字数 322 浏览 1 评论 0原文

我想使用 do 来调用一个没有参数的函数,如下所示:

do someMethod

通过实验,我似乎还可以写:

total = 42
do total.toString

问题,我可以这样做:

return do next if request.someField == 'ok'

而不是:

return next() if request.someField == 'ok' 

I want to use do to call a function without parameters like so:

do someMethod

from experimenting it seems like I can also write:

total = 42
do total.toString

question, can I do this:

return do next if request.someField == 'ok'

instead of:

return next() if request.someField == 'ok' 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清风无影 2025-01-13 04:10:13

答案是肯定的。

我看到你问的是约定。 AFAIK 的约定是,当没有参数时使用括号:foo(),并且当方便将一些变量包装在闭包中时使用 do:

for item, index in items
  do (item, index) ->
    // Do some stuff

The answer is yes.

I see you are asking about convention. The convention, AFAIK, is to use parentheses when there are no parameters: foo(), and to use do when it's convenient to wrap a few variables in a closure:

for item, index in items
  do (item, index) ->
    // Do some stuff
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文