如何使用 CoffeeScript 同时设置多个对象属性?
dbLocation[latitude] = data[1]
dbLocation[longitude] = data[2]
dbLocation[locationText] = locationText
这是我的 CoffeeScript
,有什么方法可以优化它,使其更加简洁吗?
dbLocation[latitude] = data[1]
dbLocation[longitude] = data[2]
dbLocation[locationText] = locationText
That's my CoffeeScript
, any way to optimize it so it's more condensed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以
来编写该新对象,然后将其合并到
dbLocation
中。通过编写或使用 jQuery 或 Underscore 的
extend
等函数You can write
and then merge that new object in to
dbLocation
by writingor using a function like jQuery or Underscore's
extend
.这是一句单行话,但它的可读性并不高:
Here's a one-liner, but it's not really much more readable: