var {u,v,w} = x; 是什么意思?在 JavaScript 中是什么意思?
我在一段JS代码中看到过这个:
var {status, headers, body} = res;
它有什么作用?
I have seen this in a piece of JS code:
var {status, headers, body} = res;
What does it do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从对象中一次设置几个变量的好方法
(打开 Firebug 并将其粘贴到控制台)
nice method to set few variables at once from an object
(open firebug and paste this to console)
我在此处读到了与您的表达不同的内容。这可能对你有帮助
i read something different from your expression here . this may help u
看起来像是对名为
res
的变量进行解构尝试。我从未在 Javascript 和 Chrome 控制台中看到过这表明这是一个错误:Firefox 4b12 上的 Firebug 控制台并没有抱怨,但该语句似乎没有效果:
Looks like a destructuring attempt on a variable named
res
. I've never seen that in Javascript and Chrome console suggests that it's an error:Firebug console on Firefox 4b12 doesn't complain however but the statement seems to have no effect: