如何在 CoffeeScript 中显式返回对象
这是可行的:
myfunc = () ->
id: 3
name: 'myname'
但我想明确返回对象。
myfunc = () ->
return
id: 3
name: 'myname'
但我收到“意外的‘缩进’”错误。上面的代码有什么问题?
This works:
myfunc = () ->
id: 3
name: 'myname'
But I want to be explicit about returning object.
myfunc = () ->
return
id: 3
name: 'myname'
But I get "Unexpected 'INDENT'" error. What's wrong with the above code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您应该将返回值放在同一行或将其包装在
()
中:you should put the return value on the same line or wrap it in
()
:我认为最好的方法是
因为它符合函数式编程的哲学。
I think the best way is
because it fits the philosophy of functional programming.
前面的答案都是正确的。这也有效:
The previous answers are all correct. This works too: