“Lodash Usuń niezdefiniowane wartości z obiektu” Kod odpowiedzi

właściwość obiektu Lodash Usuń

// Block list
// Remove the values you don't want
var result = _.omit(credentials, ['age']);

// Allow list
// Only allow certain values
var result = _.pick(credentials, ['fname', 'lname']);
Courageous Cicada

Lodash usuń niezdefiniowane wartości z tablicy

var colors = ["red",undefined,"","blue",null,"crap"];
// remove undefined, null, "" and any other crap
var cleanColors=_.without(colors,undefined,null,"","crap");
//cleanColors is now ["red","blue"];
Grepper

Lodash Usuń niezdefiniowane wartości z obiektu

var person = {"name":"bill","age":21,"sex":undefined,"height":"crap"};
//remove undefined properties or other crap
var cleanPerson = _.pickBy(person, function(value, key) {
  return !(value === undefined || value === "crap");
});
//cleanPerson is now { "name": "bill","age": 21}
Grepper

Odpowiedzi podobne do “Lodash Usuń niezdefiniowane wartości z obiektu”

Pytania podobne do “Lodash Usuń niezdefiniowane wartości z obiektu”

Więcej pokrewnych odpowiedzi na “Lodash Usuń niezdefiniowane wartości z obiektu” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu