如何使用 CoffeeScript 同时设置多个对象属性?

发布于 2024-12-05 04:41:24 字数 204 浏览 1 评论 0原文

      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 技术交流群。

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

发布评论

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

评论(2

梦幻的心爱 2024-12-12 04:41:24

您可以

obj = {
  latitude: data[1]
  longitude: data[2]
  locationText
}

来编写该新对象,然后将其合并到 dbLocation 中。

dbLocation[key] = val for key, val of obj

通过编写或使用 jQuery 或 Underscore 的 extend 等函数

You can write

obj = {
  latitude: data[1]
  longitude: data[2]
  locationText
}

and then merge that new object in to dbLocation by writing

dbLocation[key] = val for key, val of obj

or using a function like jQuery or Underscore's extend.

嘦怹 2024-12-12 04:41:24

这是一句单行话,但它的可读性并不高:

[dbLocation.latitude, dbLocation.longitude, dbLocation.locationText] = [data[1], data[2], locationText]

Here's a one-liner, but it's not really much more readable:

[dbLocation.latitude, dbLocation.longitude, dbLocation.locationText] = [data[1], data[2], locationText]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文