javascript - JSON.parse(JSON.stringify(data))
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-06-26 10:57:54
0
3
854

Ask when to use JSON.parse(JSON.stringify(data))

曾经蜡笔没有小新
曾经蜡笔没有小新

reply all (3)
学霸

Generally used to deep copy a json object, it can also be used to remove attributes whose values do not have JSON representation (numbers, strings, logical values, arrays, objects, null), that is to say attributes like undefined and function value.

a: { age: 1, name: undefined, time: () => {...} } 变成: b: { age: 1 }
    三叔

    Objects can be copied

      阿神

      Two usage scenarios:
      1. Convert JSON string to JSON object, JS direct attribute reference
      2. Clone object

        Latest Downloads
        More>
        Web Effects
        Website Source Code
        Website Materials
        Front End Template
        About us Disclaimer Sitemap
        php.cn:Public welfare online PHP training,Help PHP learners grow quickly!