当前位置:  开发笔记 > 编程语言 > 正文

分配给在ES5中作为参数传递的对象

如何解决《分配给在ES5中作为参数传递的对象》经验,为你挑选了1个好方法。



1> chris p baco..:

除了将属性复制到引用之外,是否有我可以在ES5中使用的解决方法?

不是,Object.assign也只是复制属性.但是,你可以简单地使用填充工具 ,在你预ES2015代码中使用Object.assign():

if (typeof Object.assign != 'function') {
  Object.assign = function(target) {
    'use strict';
    if (target == null) {
      throw new TypeError('Cannot convert undefined or null to object');
    }

    target = Object(target);
    for (var index = 1; index < arguments.length; index++) {
      var source = arguments[index];
      if (source != null) {
        for (var key in source) {
          if (Object.prototype.hasOwnProperty.call(source, key)) {
            target[key] = source[key];
          }
        }
      }
    }
    return target;
  };
}

推荐阅读
依然-狠幸福
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有