在javascript中分配值不参考
这个问题在这里已经有了答案:
你可以使用Object.assign:
var fruit = {
name: "Apple"
};
var vegetable = Object.assign({}, fruit);
vegetable.name = "potatoe";
console.log(fruit);
链接地址: http://www.djcxy.com/p/24761.html