最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Lodash equivalent of JSON.parse(JSON.stringify()) - Stack Overflow

programmeradmin2浏览0评论

I am currently cloning an object with:

var copy = JSON.parse(JSON.stringify(original));

When I try lodash - it seems the remended way is cloneDeep() but that makes a total mess for me. My object is partially made up of the result of a Mongoose query which may be what is causing this.

Original:

template: 'email/receipt.swig',
templateVars: { 
  code: '299137819',

Cloneed with lodash:

template: 'email/receipt.swig',
templateVars: { 
  '$__': { 
    strictMode: true,
    selected: undefined,
    shardval: undefined,
    saveError: undefined,
    validationError: undefined,
    adhocPaths: undefined,
    removing: undefined,
    inserting: true,
    version: undefined,
    getters: [Object],
    _id: undefined,
    populate: undefined,
    populated: [Object],
    wasPopulated: false,
    scope: [Circular],
    activePaths: [Object],
    ownerDocument: undefined,
    fullPath: undefined 
  },
  isNew: false,
  errors: undefined,
  _maxListeners: 0,
  _events: { save: [Object], isNew: [Object] },
  _doc: { 
    code: '299137819'

What is happening here? This is clearly Mongo stuff but why the reformat? Is there no way to make an exact copy with lodash? Not that my current method is a pain - just trying to understand why people say cloneDeep is the equivalent.

I am currently cloning an object with:

var copy = JSON.parse(JSON.stringify(original));

When I try lodash - it seems the remended way is cloneDeep() but that makes a total mess for me. My object is partially made up of the result of a Mongoose query which may be what is causing this.

Original:

template: 'email/receipt.swig',
templateVars: { 
  code: '299137819',

Cloneed with lodash:

template: 'email/receipt.swig',
templateVars: { 
  '$__': { 
    strictMode: true,
    selected: undefined,
    shardval: undefined,
    saveError: undefined,
    validationError: undefined,
    adhocPaths: undefined,
    removing: undefined,
    inserting: true,
    version: undefined,
    getters: [Object],
    _id: undefined,
    populate: undefined,
    populated: [Object],
    wasPopulated: false,
    scope: [Circular],
    activePaths: [Object],
    ownerDocument: undefined,
    fullPath: undefined 
  },
  isNew: false,
  errors: undefined,
  _maxListeners: 0,
  _events: { save: [Object], isNew: [Object] },
  _doc: { 
    code: '299137819'

What is happening here? This is clearly Mongo stuff but why the reformat? Is there no way to make an exact copy with lodash? Not that my current method is a pain - just trying to understand why people say cloneDeep is the equivalent.

Share Improve this question asked Aug 20, 2014 at 18:19 cyberwombatcyberwombat 40.2k41 gold badges184 silver badges267 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 2

Objects returned from Mongoose are not raw key-values like you might expect from the DB, but they have a lot of other functionality build in. Ultimately, cloneDeep does this, which ends up copying everything including functions and other stuff you may not want.

JSON.stringify as well as .toJSON will work because of the toJSON behavior.

So in fact they are not equivalent because you can redefine JSON serialization behavior and JSON never serializes functions anyway.

发布评论

评论列表(0)

  1. 暂无评论