一镀梭、概覽
- Object.is()
- Object.assign()
- Object.getOwnPropertyDescriptors()
__proto__屬性
- Object.getPrototypeOf()
- Object.setPrototypeOf()
- Object.keys()
- Object.values()
- Object.entries()
- Object.fromEntries()
Object.is()
ES5中的==
和===
都可以用來判斷兩個(gè)值是否相等设预,但是都有缺陷饶米,==
會(huì)自動(dòng)進(jìn)行隱式類型轉(zhuǎn)換草丧,===
的NaN
不等于自身及+0
不等于-0
祝懂。
Object.is()
引入的目的就是為了保證在所有環(huán)境中咕娄,只要兩個(gè)值是一樣的,它們就應(yīng)該相等奈梳,其行為與===
基本一致杈湾,用來比較兩個(gè)值是否嚴(yán)格相等。
Object.is('foo', 'foo')
// true
Object.is({}, {})
// false
有兩個(gè)不同之處:一是+0
不等于-0
攘须,二是NaN
等于自身漆撞。
+0 === -0 //true
NaN === NaN // false
Object.is(+0, -0) // false
Object.is(NaN, NaN) // true
在ES5中,可以使用以下代碼實(shí)現(xiàn)Object.is
:
Object.defineProperty(Object, 'is', {
value: function(x, y) {
if (x === y) {
// 針對(duì)+0 不等于 -0的情況
return x !== 0 || 1 / x === 1 / y;
}
// 針對(duì)NaN的情況
return x !== x && y !== y;
},
configurable: true,
enumerable: false,
writable: true
});
Object.assign()
Object.assign
用于對(duì)象的合并,將源對(duì)象(source)的所有可枚舉屬性叫挟,復(fù)制到目標(biāo)對(duì)象(target)上:
const target = { a: 1 };
const source1 = { b: 2 };
const source2 = { c: 3 };
Object.assign(target, source1, source2);
target // {a:1, b:2, c:3}
基本用法
- 后面的屬性會(huì)覆蓋前面相同的屬性:
const target = { a: 1, b: 1 };
const source1 = { b: 2, c: 2 };
const source2 = { c: 3 };
Object.assign(target, source1, source2);
target // {a:1, b:2, c:3}
- 如果只有一個(gè)參數(shù)艰匙,直接返回該參數(shù):
const obj = {a: 1};
Object.assign(obj) === obj // true
- 如果該參數(shù)不是對(duì)象限煞,則會(huì)先轉(zhuǎn)成對(duì)象抹恳,然后返回:
typeof Object.assign(2) // "object"
- 由于
undefined
和null
無法轉(zhuǎn)成對(duì)象,所以如果它們作為參數(shù)署驻,就會(huì)報(bào)錯(cuò):
Object.assign(undefined) // 報(bào)錯(cuò)
Object.assign(null) // 報(bào)錯(cuò)
- 但是如果
undefined
和null
都不在首參數(shù)奋献,就不會(huì)報(bào)錯(cuò):
let obj = {a: 1};
Object.assign(obj, undefined) === obj // true
Object.assign(obj, null) === obj // true
- 除了字符串會(huì)以數(shù)組形式,拷貝入目標(biāo)對(duì)象旺上,其他值都不會(huì)產(chǎn)生效果:
const v1 = 'abc';
const v2 = true;
const v3 = 10;
const obj = Object.assign({}, v1, v2, v3);
console.log(obj); // { "0": "a", "1": "b", "2": "c" }
上述代碼中數(shù)值和布爾值都會(huì)被忽略瓶蚂。這是因?yàn)橹挥凶址陌b對(duì)象,會(huì)產(chǎn)生可枚舉屬性宣吱。
Object(true) // {[[PrimitiveValue]]: true}
Object(10) // {[[PrimitiveValue]]: 10}
Object('abc') // {0: "a", 1: "b", 2: "c", length: 3, [[PrimitiveValue]]: "abc"}
上面代碼中窃这,布爾值、數(shù)值征候、字符串分別轉(zhuǎn)成對(duì)應(yīng)的包裝對(duì)象杭攻,可以看到它們的原始值都在包裝對(duì)象的內(nèi)部屬性[[PrimitiveValue]]
上面,這個(gè)屬性是不會(huì)被Object.assign
拷貝的疤坝。只有字符串的包裝對(duì)象兆解,會(huì)產(chǎn)生可枚舉的實(shí)義屬性,那些屬性則會(huì)被拷貝跑揉。
-
Object.assign
只拷貝源對(duì)象的自身屬性(不拷貝繼承屬性)锅睛,也不拷貝不可枚舉的屬性(enumerable: false
):
Object.assign({b: 'c'},
Object.defineProperty({}, 'invisible', {
enumerable: false,
value: 'hello'
})
)
// { b: 'c' }
上述需要拷貝的對(duì)象只有一個(gè)不可枚舉屬性invisible,所以這個(gè)屬性并沒有被拷貝進(jìn)去历谍。
- 屬性名為
Symbol
值的屬性现拒,也會(huì)被拷貝:
Object.assign({ a: 'b' }, { [Symbol('c')]: 'd' })
// { a: 'b', Symbol(c): 'd' }
注意點(diǎn)
- 淺拷貝
const obj1 = {a: {b: 1}};
const obj2 = Object.assign({}, obj1);
obj1.a.b = 2;
obj2.a.b // 2
- 同名屬性的替換
const target = { a: { b: 'c', d: 'e' } }
const source = { a: { b: 'hello' } }
Object.assign(target, source)
// { a: { b: 'hello' } }
上述代碼中,a
被整個(gè)替換望侈,不會(huì)得到{ a: { b: 'hello', d: 'e' } }
這樣的結(jié)果具练。
- 數(shù)組的處理
Object.assign([1, 2, 3], [4, 5])
// [4, 5, 3]
上述代碼中,以后一個(gè)數(shù)組的值替換了目標(biāo)數(shù)組中對(duì)應(yīng)下標(biāo)的值甜无。
- 取值函數(shù)的處理
Object.assign
只能進(jìn)行值的復(fù)制扛点,如果要復(fù)制的值是一個(gè)取值函數(shù),那么將求值后再?gòu)?fù)制:
const source = {
get foo() { return 1 }
};
const target = {};
Object.assign(target, source)
// { foo: 1 }
常見用途
- 為對(duì)象添加屬性
class Point {
constructor(x, y) {
Object.assign(this, {x, y});
}
}
- 為對(duì)象添加方法
Object.assign(SomeClass.prototype, {
someMethod(arg1, arg2) {
···
},
anotherMethod() {
···
}
});
// 等同于下面的寫法
SomeClass.prototype.someMethod = function (arg1, arg2) {
···
};
SomeClass.prototype.anotherMethod = function () {
···
};
- 克隆對(duì)象
function clone(origin) {
return Object.assign({}, origin);
}
上面代碼將原始對(duì)象拷貝到一個(gè)空對(duì)象岂丘,就得到了原始對(duì)象的克隆陵究,但是只能克隆原始對(duì)象自身的值,不能克隆它繼承的值奥帘,下面的代碼可以實(shí)現(xiàn)克隆繼承的值:
function clone(origin) {
let originProto = Object.getPrototypeOf(origin);
return Object.assign(Object.create(originProto), origin);
}
- 合并多個(gè)對(duì)象
const merge =
(target, ...sources) => Object.assign(target, ...sources);
//合并后返回一個(gè)新對(duì)象
const merge =
(...sources) => Object.assign({}, ...sources);
- 為屬性指定默認(rèn)值
const DEFAULTS = {
logLevel: 0,
outputFormat: 'html'
};
function processContent(options) {
options = Object.assign({}, DEFAULTS, options);
console.log(options);
// ...
}
Object.getOwnPropertyDescriptors()
ES5 的Object.getOwnPropertyDescriptor()
方法會(huì)返回某個(gè)對(duì)象屬性的描述對(duì)象(descriptor)铜邮。ES2017 引入了Object.getOwnPropertyDescriptors()
方法,返回指定對(duì)象所有自身屬性(非繼承屬性)的描述對(duì)象。
const obj = {
foo: 123,
get bar() { return 'abc' }
};
Object.getOwnPropertyDescriptors(obj)
// { foo:
// { value: 123,
// writable: true,
// enumerable: true,
// configurable: true },
// bar:
// { get: [Function: get bar],
// set: undefined,
// enumerable: true,
// configurable: true } }
上面代碼中松蒜,Object.getOwnPropertyDescriptors()
方法返回一個(gè)對(duì)象扔茅,所有原對(duì)象的屬性名都是該對(duì)象的屬性名,對(duì)應(yīng)的屬性值就是該屬性的描述對(duì)象秸苗。
該方法的實(shí)現(xiàn):
function getOwnPropertyDescriptors(obj) {
const result = {};
for (let key of Reflect.ownKeys(obj)) {
result[key] = Object.getOwnPropertyDescriptor(obj, key);
}
return result;
}
- 引入目的
Object.getOwnPropertyDescriptors()
方法的引入就是為了解決Object.assign()
無法正確拷貝get屬性和set屬性的問題召娜。
const source = {
set foo(value) {
console.log(value);
}
};
const target1 = {};
Object.assign(target1, source);
Object.getOwnPropertyDescriptor(target1, 'foo')
// { value: undefined,
// writable: true,
// enumerable: true,
// configurable: true }
上述代碼中,使用Object.assign
拷貝source
對(duì)象到target1
對(duì)象惊楼,但是set
方法并沒有被成功拷貝玖瘸,其值變成了undefined
,這是因?yàn)?code>Object.assign只拷貝屬性的值檀咙,而不拷貝賦值方法或取值方法雅倒。
但是,使用Object.getOwnPropertyDescriptors()
方法配合Object.defineProperties()
方法弧可,就可以實(shí)現(xiàn)正確拷貝:
const source = {
set foo(value) {
console.log(value);
}
};
const target2 = {};
Object.defineProperties(target2, Object.getOwnPropertyDescriptors(source));
Object.getOwnPropertyDescriptor(target2, 'foo')
// { get: undefined,
// set: [Function: set foo],
// enumerable: true,
// configurable: true }
以上代碼兩個(gè)對(duì)象的合并可簡(jiǎn)化:
const shallowMerge = (target, source) => Object.defineProperties(
target,
Object.getOwnPropertyDescriptors(source)
);
Object.getOwnPropertyDescriptors()
方法的另一個(gè)用處蔑匣,是配合Object.create()
方法,將對(duì)象屬性克隆到一個(gè)新對(duì)象棕诵,屬于淺拷貝裁良。
const clone = Object.create(Object.getPrototypeOf(obj),
Object.getOwnPropertyDescriptors(obj));
// 或者
const shallowClone = (obj) => Object.create(
Object.getPrototypeOf(obj),
Object.getOwnPropertyDescriptors(obj)
);
- 實(shí)現(xiàn)繼承
老版本繼承對(duì)象:
const obj = {
__proto__: prot,
foo: 123,
};
ES6 規(guī)定proto只有瀏覽器要部署,其他環(huán)境不用部署年鸳。如果去除proto趴久,上面代碼就要改成下面這樣。
const obj = Object.create(prot);
obj.foo = 123;
// 或者
const obj = Object.assign(
Object.create(prot),
{
foo: 123,
}
);
Object.getOwnPropertyDescriptors()
寫法:
const obj = Object.create(
prot,
Object.getOwnPropertyDescriptors({
foo: 123,
})
);
- 實(shí)現(xiàn)Mixin(混入)模式
let mix = (object) => ({
with: (...mixins) => mixins.reduce(
(c, mixin) => Object.create(
c, Object.getOwnPropertyDescriptors(mixin)
), object)
});
// multiple mixins example
let a = {a: 'a'};
let b = {b: 'b'};
let c = {c: 'c'};
let d = mix(c).with(a, b);
d.c // "c"
d.b // "b"
d.a // "a"
上面代碼返回一個(gè)新的對(duì)象d搔确,代表了對(duì)象a和b被混入了對(duì)象c的操作彼棍。
__proto__屬性
// es5 的寫法
const obj = {
method: function() { ... }
};
obj.__proto__ = someOtherObj;
// es6 的寫法
var obj = Object.create(someOtherObj);
obj.method = function() { ... };
標(biāo)準(zhǔn)明確規(guī)定,只有瀏覽器必須部署這個(gè)屬性膳算,其他運(yùn)行環(huán)境不一定需要部署座硕,而且新的代碼最好認(rèn)為這個(gè)屬性是不存在的。因此,無論從語義的角度涕蜂,還是從兼容性的角度华匾,都不要使用這個(gè)屬性,而是使用下面的Object.setPrototypeOf()(寫操作)机隙、Object.getPrototypeOf()(讀操作)蜘拉、Object.create()(生成操作)代替。
具體實(shí)現(xiàn)上有鹿,__proto__
調(diào)用的是Object.prototype.__proto__
旭旭,具體實(shí)現(xiàn)如下:
Object.defineProperty(Object.prototype, '__proto__', {
get() {
let _thisObj = Object(this);
return Object.getPrototypeOf(_thisObj);
},
set(proto) {
if (this === undefined || this === null) {
throw new TypeError();
}
if (!isObject(this)) {
return undefined;
}
if (!isObject(proto)) {
return undefined;
}
let status = Reflect.setPrototypeOf(this, proto);
if (!status) {
throw new TypeError();
}
},
});
function isObject(value) {
return Object(value) === value;
}
Object.getPrototypeOf()
Object.getPrototypeOf()
用于讀取一個(gè)對(duì)象的原型對(duì)象:
function Rectangle() {
// ...
}
const rec = new Rectangle();
Object.getPrototypeOf(rec) === Rectangle.prototype
// true
Object.setPrototypeOf(rec, Object.prototype);
Object.getPrototypeOf(rec) === Rectangle.prototype
// false
如果參數(shù)不是對(duì)象,會(huì)被自動(dòng)轉(zhuǎn)為對(duì)象:
// 等同于 Object.getPrototypeOf(Number(1))
Object.getPrototypeOf(1)
// Number {[[PrimitiveValue]]: 0}
// 等同于 Object.getPrototypeOf(String('foo'))
Object.getPrototypeOf('foo')
// String {length: 0, [[PrimitiveValue]]: ""}
// 等同于 Object.getPrototypeOf(Boolean(true))
Object.getPrototypeOf(true)
// Boolean {[[PrimitiveValue]]: false}
Object.getPrototypeOf(1) === Number.prototype // true
Object.getPrototypeOf('foo') === String.prototype // true
Object.getPrototypeOf(true) === Boolean.prototype // true
如果參數(shù)是undefined或null葱跋,它們無法轉(zhuǎn)為對(duì)象持寄,所以會(huì)報(bào)錯(cuò):
Object.getPrototypeOf(null)
// TypeError: Cannot convert undefined or null to object
Object.getPrototypeOf(undefined)
// TypeError: Cannot convert undefined or null to object
Object.setPrototypeOf()
Object.setPrototypeOf
方法的作用與__proto__
相同源梭,用來設(shè)置一個(gè)對(duì)象的prototype
對(duì)象,返回參數(shù)對(duì)象本身稍味。它是 ES6 正式推薦的設(shè)置原型對(duì)象的方法:
// 格式
Object.setPrototypeOf(object, prototype)
// 用法
const o = Object.setPrototypeOf({}, null);
該方法等同于下面的函數(shù):
function setPrototypeOf(obj, proto) {
obj.__proto__ = proto;
return obj;
}
例子:
let proto = {};
let obj = { x: 10 };
Object.setPrototypeOf(obj, proto);
proto.y = 20;
proto.z = 40;
obj.x // 10
obj.y // 20
obj.z // 40
上面代碼將proto
對(duì)象設(shè)為obj
對(duì)象的原型废麻,所以從obj
對(duì)象可以讀取proto
對(duì)象的屬性。
如果第一個(gè)參數(shù)不是對(duì)象模庐,會(huì)自動(dòng)轉(zhuǎn)為對(duì)象烛愧。但是由于返回的還是第一個(gè)參數(shù),所以這個(gè)操作不會(huì)產(chǎn)生任何效果赖欣。
Object.setPrototypeOf(1, {}) === 1 // true
Object.setPrototypeOf('foo', {}) === 'foo' // true
Object.setPrototypeOf(true, {}) === true // true
由于undefined
和null
無法轉(zhuǎn)為對(duì)象屑彻,所以如果第一個(gè)參數(shù)是undefined
或null
验庙,就會(huì)報(bào)錯(cuò)顶吮。
Object.setPrototypeOf(undefined, {})
// TypeError: Object.setPrototypeOf called on null or undefined
Object.setPrototypeOf(null, {})
// TypeError: Object.setPrototypeOf called on null or undefined
Object.keys()
返回一個(gè)成員是參數(shù)對(duì)象自身的(不含繼承的)所有可遍歷(enumerable)屬性的鍵名的數(shù)組:
var obj = { foo: 'bar', baz: 42 };
Object.keys(obj)
// ["foo", "baz"]
Object.keys
配套的Object.values
和Object.entries
,作為遍歷一個(gè)對(duì)象的補(bǔ)充手段粪薛,供for...of
循環(huán)使用:
let {keys, values, entries} = Object;
let obj = { a: 1, b: 2, c: 3 };
for (let key of keys(obj)) {
console.log(key); // 'a', 'b', 'c'
}
for (let value of values(obj)) {
console.log(value); // 1, 2, 3
}
for (let [key, value] of entries(obj)) {
console.log([key, value]); // ['a', 1], ['b', 2], ['c', 3]
}
Object.values()
Object.values
方法返回一個(gè)數(shù)組悴了,成員是參數(shù)對(duì)象自身的(不含繼承的)所有可遍歷(enumerable)屬性的鍵值:
const obj = { foo: 'bar', baz: 42 };
Object.values(obj)
// ["bar", 42]
Object.values
只返回對(duì)象自身的可遍歷屬性:
const obj = Object.create({}, {p: {value: 42}});
Object.values(obj) // []
上面代碼中,Object.create
方法的第二個(gè)參數(shù)添加的對(duì)象屬性(屬性p)违寿,如果不顯式聲明湃交,默認(rèn)是不可遍歷的,因?yàn)?code>p的屬性描述對(duì)象的enumerable
默認(rèn)是false
藤巢,Object.values
不會(huì)返回這個(gè)屬性搞莺。只要把enumerable
改成true
,Object.values
就會(huì)返回屬性p
的值掂咒。
const obj = Object.create({}, {p:
{
value: 42,
enumerable: true
}
});
Object.values(obj) // [42]
Object.values
會(huì)過濾屬性名為 Symbol
值的屬性:
Object.values({ [Symbol()]: 123, foo: 'abc' });
// ['abc']
如果Object.values
方法的參數(shù)是一個(gè)字符串才沧,會(huì)返回各個(gè)字符組成的一個(gè)數(shù)組。
Object.values('foo')
// ['f', 'o', 'o']
如果參數(shù)不是對(duì)象绍刮,Object.values
會(huì)先將其轉(zhuǎn)為對(duì)象温圆。由于數(shù)值和布爾值的包裝對(duì)象,都不會(huì)為實(shí)例添加非繼承的屬性孩革。所以岁歉,Object.values
會(huì)返回空數(shù)組:
Object.values(42) // []
Object.values(true) // []
Object.entries()
Object.entries()
方法返回一個(gè)數(shù)組,成員是參數(shù)對(duì)象自身的(不含繼承的)所有可遍歷(enumerable)屬性的鍵值對(duì)數(shù)組膝蜈。
const obj = { foo: 'bar', baz: 42 };
Object.entries(obj)
// [ ["foo", "bar"], ["baz", 42] ]
除了返回值不一樣锅移,該方法的行為與Object.values
基本一致。
Object.entries
的基本用途是遍歷對(duì)象的屬性饱搏。
let obj = { one: 1, two: 2 };
for (let [k, v] of Object.entries(obj)) {
console.log(
`${JSON.stringify(k)}: ${JSON.stringify(v)}`
);
}
// "one": 1
// "two": 2
Object.entries
方法的另一個(gè)用處是非剃,將對(duì)象轉(zhuǎn)為真正的Map
結(jié)構(gòu)。
const obj = { foo: 'bar', baz: 42 };
const map = new Map(Object.entries(obj));
map // Map { foo: "bar", baz: 42 }
自己實(shí)現(xiàn)Object.entries
:
// Generator函數(shù)的版本
function* entries(obj) {
for (let key of Object.keys(obj)) {
yield [key, obj[key]];
}
}
// 非Generator函數(shù)的版本
function entries(obj) {
let arr = [];
for (let key of Object.keys(obj)) {
arr.push([key, obj[key]]);
}
return arr;
}
Object.fromEntries()
Object.fromEntries()
方法是Object.entries()
的逆操作窍帝,用于將一個(gè)鍵值對(duì)數(shù)組轉(zhuǎn)為對(duì)象努潘。
Object.fromEntries([
['foo', 'bar'],
['baz', 42]
])
// { foo: "bar", baz: 42 }
該方法的主要目的,是將鍵值對(duì)的數(shù)據(jù)結(jié)構(gòu)還原為對(duì)象,因此特別適合將 Map
結(jié)構(gòu)轉(zhuǎn)為對(duì)象疯坤。
// 例一
const entries = new Map([
['foo', 'bar'],
['baz', 42]
]);
Object.fromEntries(entries)
// { foo: "bar", baz: 42 }
// 例二
const map = new Map().set('foo', true).set('bar', false);
Object.fromEntries(map)
// { foo: true, bar: false }
該方法的一個(gè)用處是配合URLSearchParams
對(duì)象报慕,將查詢字符串轉(zhuǎn)為對(duì)象。
Object.fromEntries(new URLSearchParams('foo=bar&baz=qux'))
// { foo: "bar", baz: "qux" }