vuex源码中关于js深拷贝问题

发布于 2022-09-12 00:43:16 字数 948 浏览 26 评论 0

vuex中有一个工具类有如下处理深拷贝代码:

function deepCopy(obj, cache = []) {
    // just return if obj is immutable value
    if (obj === null || typeof obj !== 'object') {
        return obj
    }

    // if obj is hit, it is in circular structure
    const hit = cache.filter(c => c.original === obj)[0]
    if (hit) {
        return hit.copy
    }

    const copy = Array.isArray(obj) ? [] : {}
    // put the copy into cache at first
    // because we want to refer it in recursive deepCopy
    cache.push({
        original: obj,
        copy
    })

    Object.keys(obj).forEach(key => {
        copy[key] = deepCopy(obj[key], cache)
    })

    return copy
}

使用这个函数copy对象的时候,如果对象中某个属性的值是date类型的话,它会把date类型转成一个空对象:

let obj = {
    obj: new Date()
}
console.log(obj)
console.log(deepCopy(obj))

image.png

请问为什么会这样?怎么修改代码能修复这个问题?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情绪 2022-09-19 00:43:16

这个工具类明显是简化后的,可能是人家自己自用的。少考虑了n种情况,自己写一个,或者直接用lodash的cloneDeep吧

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文