javascript - lodash .get replace empty value - Stack Overflow

so i am using lodash .get to copy some array from my database to create a excel documents by using this

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
Add a ment  | 

2 Answers 2

Reset to default 10

If 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

相关推荐

  • javascript - lodash .get replace empty value - Stack Overflow

    so i am using lodash .get to copy some array from my database to create a excel documents by using this

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信