admin管理员组文章数量:1343934
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, '-') : '-';
本文标签: javascriptlodash get replace empty valueStack Overflow
版权声明:本文标题:javascript - lodash .get replace empty value - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698506a2523911.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论