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

javascript - Object: Deep omit - Stack Overflow

programmeradmin3浏览0评论

Is there a way to use _.omit on nested object properties?

I want this to happen:

schema = {
  firstName: {
    type: String
  },
  secret: {
    type: String,
    optional: true,
    private: true
  }
};

schema = _.nestedOmit(schema, 'private');

console.log(schema);
// Should Log
// {
//   firstName: {
//     type: String
//   },
//   secret: {
//     type: String,
//     optional: true
//   }
// }

_.nestedOmit obviously doesn't exist and just _.omit doesn't affect nested properties, but it should be clear what I'm looking for.

It also doesn't have to be underscore, but in my experience it often just makes things shorter and clearer.

Is there a way to use _.omit on nested object properties?

I want this to happen:

schema = {
  firstName: {
    type: String
  },
  secret: {
    type: String,
    optional: true,
    private: true
  }
};

schema = _.nestedOmit(schema, 'private');

console.log(schema);
// Should Log
// {
//   firstName: {
//     type: String
//   },
//   secret: {
//     type: String,
//     optional: true
//   }
// }

_.nestedOmit obviously doesn't exist and just _.omit doesn't affect nested properties, but it should be clear what I'm looking for.

It also doesn't have to be underscore, but in my experience it often just makes things shorter and clearer.

Share Improve this question asked May 12, 2015 at 10:15 zimt28zimt28 7052 gold badges8 silver badges21 bronze badges 1
  • Will the nesting be arbitrary or just one level? – thefourtheye Commented May 12, 2015 at 10:19
Add a ment  | 

2 Answers 2

Reset to default 8

You could create a nestedOmit mixin that would traverse the object to remove the unwanted key. Something like

_.mixin({
    nestedOmit: function(obj, iteratee, context) {
        // basic _.omit on the current object
        var r = _.omit(obj, iteratee, context);

        //transform the children objects
        _.each(r, function(val, key) {
            if (typeof(val) === "object")
                r[key] = _.nestedOmit(val, iteratee, context);
        });

        return r;
    }
});

and a demo http://jsfiddle/nikoshr/fez3eyw8/1/

Detailed solution of this issue is posted in another thread. Please have a look at the below thread

Link - Cleaning Unwanted Fields From GraphQL Responses

发布评论

评论列表(0)

  1. 暂无评论