当前位置:   article > 正文

Object.assign()详解

object.assign

1、Object.assign()是什么?

Object.assign() 方法用于将所有可枚举属性的值从一个或多个源对象分配到目标对象。它将返回目标对象。

        tips:在JavaScript中枚举属性简单来说就是指对象中的属性是否可以被遍历出来,是属性的enumerable值决定的

2、基本用法

  1. const target = { a: 1, b: 2 };
  2. const source = { b: 3, c: 4 };
  3. const source2 = { c: 5, d: 6 };
  4. const currentTarget = Object.assign(target, source, source2);
  5. console.log(currentTarget);
  6. // currentTarget: {a: 1, b: 3, c: 5, d: 6}

Object.assign方法的第一个参数是目标对象,后边的其他参数都是源对象;

     tips:

               1、如果目标对象中的属性具有相同的键,则属性将被源对象中的属性覆盖。后面的源对象的属性将类似地覆盖前面的源对象的属性。

                2、Object.assign 方法只会拷贝源对象自身的并且可枚举的属性到目标对象。

                3、注意目标自身也会改变

 

如果只有一个参数,Object.assign会直接返回该参数 

  1. const target = { a: 1, b: 2 };
  2. const currentTarget = Object.assign(target);
  3. console.log(currentTarget);
  4. //{a: 1, b: 2}

 该参数不是对象会先转为对象,然后return;(undefined || unll 出现在target(源对象)位置无法转换为对象会报错) 

  1. const currentTarget = Object.assign(10);
  2. console.log(currentTarget);
  3. //Number {10}

注意,Object.assign 不会在那些source对象值为 null 或 undefined 的时候抛出错误。

其他类型的值(即数值、字符串和布尔值)不在首参数,也不会报错。但是,除了字符串会以数组形式,拷贝入目标对象,其他值都不会产生效果。

  1. const source1 = "aaa";
  2. const source2 = false;
  3. const source3 = 666;
  4. const currentTarget = Object.assign({}, source1, source2, source3);
  5. console.log(currentTarget);
  6. //{0: "a", 1: "a", 2: "a"}

 Symbol 类型的属性也会被拷贝。

  1. const target = { a: "111" };
  2. const source1 = { [Symbol("6")]: 666 };
  3. const currentTarget = Object.assign(target, source1);
  4. console.log(currentTarget);
  5. //{a: "111", Symbol(6): 666}

 

继承属性和不可枚举属性是不能拷贝的

  1. const obj = Object.create({foo: 1}, { // foo 是个继承属性。
  2. bar: {
  3. value: 2 // bar 是个不可枚举属性。
  4. },
  5. baz: {
  6. value: 3,
  7. enumerable: true // baz 是个自身可枚举属性。
  8. }
  9. });
  10. const currentTarget= Object.assign({}, obj);
  11. console.log(currentTarget); // { baz: 3 }

出现异常会打断后续的copy任务

  1. const target = Object.defineProperty({}, "foo", {
  2. value: 1,
  3. writable: false
  4. }); // target 的 foo 属性是个只读属性。
  5. Object.assign(target, {bar: 2}, {foo2: 3, foo: 3, foo3: 3}, {baz: 4});
  6. // TypeError: "foo" is read-only
  7. // 注意这个异常是在拷贝第二个源对象的第二个属性时发生的。
  8. console.log(target.bar); // 2,说明第一个源对象拷贝成功了。
  9. console.log(target.foo2); // 3,说明第二个源对象的第一个属性也拷贝成功了。
  10. console.log(target.foo); // 1,只读属性不能被覆盖,所以第二个源对象的第二个属性拷贝失败了。
  11. console.log(target.foo3); // undefined,异常之后 assign 方法就退出了,第三个属性是不会被拷贝到的。
  12. console.log(target.baz); // undefined,第三个源对象更是不会被拷贝到的。

深拷贝问题

针对深拷贝,需要使用其他办法,因为 Object.assign()拷贝的是(可枚举)属性值。

假如源值是一个对象的引用,它仅仅会复制其引用值。

  1. const log = console.log;
  2. function test() {
  3. let obj1 = { a: 0 , b: { c: 0}};
  4. let obj2 = Object.assign({}, obj1);
  5. log(JSON.stringify(obj2));
  6. // { a: 0, b: { c: 0}}
  7. obj1.a = 1;
  8. log(JSON.stringify(obj1));
  9. // { a: 1, b: { c: 0}}
  10. log(JSON.stringify(obj2));
  11. // { a: 0, b: { c: 0}}
  12. obj2.a = 2;
  13. log(JSON.stringify(obj1));
  14. // { a: 1, b: { c: 0}}
  15. log(JSON.stringify(obj2));
  16. // { a: 2, b: { c: 0}}
  17. obj2.b.c = 3;
  18. log(JSON.stringify(obj1));
  19. // { a: 1, b: { c: 3}}
  20. log(JSON.stringify(obj2));
  21. // { a: 2, b: { c: 3}}
  22. // Deep Clone
  23. obj1 = { a: 0 , b: { c: 0}};
  24. let obj3 = JSON.parse(JSON.stringify(obj1));
  25. obj1.a = 4;
  26. obj1.b.c = 4;
  27. log(JSON.stringify(obj3));
  28. // { a: 0, b: { c: 0}}
  29. }
  30. test();

同名属性的替换

对于这种嵌套的对象,一旦遇到同名属性,Object.assign的处理方法是替换,而不是添加。

  1. const target = { a: { b: 'c', d: 'e' } }
  2. const source = { a: { b: 'hello' } }
  3. Object.assign(target, source)
  4. // { a: { b: 'hello' } }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/68107
推荐阅读
相关标签
  

闽ICP备14008679号