js中对象发生不可拓展问题

本文讲述了在JavaScript中尝试合并对象时遇到Cannotassigntoread-onlyproperty错误的情况,介绍了如何通过检查对象扩展性并使用浅拷贝来避免此类问题,提供了解决方案。
摘要由CSDN通过智能技术生成

小编在进行对象合并{….a,….b}的时候发生了如下报错

报错如下

Uncaught runtime errors:
×
ERROR
Cannot assign to read only property ‘password’ of object ‘#’
TypeError: Cannot assign to read only property ‘password’ of object ‘#’
at createUser (http://localhost:3000/static/js/src_view_Registered_registered_js.chunk.js:43:19)
at submit (http://localhost:3000/src_view_Registered_registered_js.186aa687e8d666b41197.hot-update.js:51:79)
at onFinish (http://localhost:3000/static/js/vendors-node_modules_antd_es__util_colors_js-node_modules_antd_es_divider_index_js-node_modul-7e8d3b.chunk.js:8195:9)
at http://localhost:3000/static/js/vendors-node_modules_antd_es__util_colors_js-node_modules_antd_es_divider_index_js-node_modul-7e8d3b.chunk.js:9460:11

检查对象是否支持拓展

console.log(Object.isExtensible(对象)) true为可,false为不可

解决办法

const c = {...a,...b} ---> a不可拓展
const ob = {...a} // 浅拷贝
const c = {...ob,...b}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值