用例:我想使用解构来访问对象的单个字段,但我也希望能够访问整个对象。
我知道我可以这样做:
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
}