so i am using lodash .get
to copy some array from my database to create a excel documents by using this
object[key.key] = _.get(item, key.key, '-');
where key
is set of array and key.key
is set of array column name or field name. it works fine replacing undefined value from database to -
but there is also some fields that just have an empty value and i want to catch those fields and also changing it into -
how to do that?
so i am using lodash .get
to copy some array from my database to create a excel documents by using this
object[key.key] = _.get(item, key.key, '-');
where key
is set of array and key.key
is set of array column name or field name. it works fine replacing undefined value from database to -
but there is also some fields that just have an empty value and i want to catch those fields and also changing it into -
how to do that?
Share Improve this question asked Mar 9, 2018 at 14:27 PamanBeruangPamanBeruang 1,5895 gold badges30 silver badges64 bronze badges 3-
What is an "empty value"? An empty string,
null
, ...? – Andreas Commented Mar 9, 2018 at 14:31 - empty string like "" – PamanBeruang Commented Mar 9, 2018 at 14:41
- Thanks for asking the perfect question. I had this exact same problem. – Rutwick Gangurde Commented Jun 24, 2020 at 18:02
2 Answers
Reset to default 10If there won't be any other "falsy" values the shortest way would be:
obj[key.key] = item[key.key] || '-';
// or with lodash
obj[key.key] = _.get(item, key.key, '-') || '-';
This will replace every "falsy" value with a single dash.
If this isn't possible:
const value = item[key.key];
obj[key.key] = (typeof value === 'undefined' || value === '') ? '-' : value;
// or with lodash
const value = _.get(item, key.key, '-');
obj[key.key] = value === '' ? '-' : value;
This should work:
_.get(item, key.key, '-') != '' ? _.get(item, key.key, '-') : '-';
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743698507a4492163.html
评论列表(0条)