ES6虽然解构参数可以访问包含对象吗?

时间:2016-09-27 06:40:16

标签: javascript destructuring

用例:我想使用解构来访问对象的单个字段,但我也希望能够访问整个对象。

我知道我可以这样做:

function auth(cred) {
   const {user, pwd} = cred;
    // rest of the code
}

但有没有ES6正确的方法呢? 也许类似于Clojure的东西:例如,

(let [[item1 :as all] names] )

function auth({ user, pwd :as all}) {
  // i can access user and pwd but can i access whole containing object
  }

0 个答案:

没有答案