使用lodash我需要将一个对象数组转换为字符串数组。
原始阵列,
const tags = [{
"display": "tag1",
"value": "tag1"
}, {
"display": "tag2",
"value": "tag2"
}]
预期结果,
const tags = ["tag1", "tag2"]
我试过这种方式,
const data = [{
"display": "tag1",
"value": "tag1"
}, {
"display": "tag2",
"value": "tag2"
}]
const result = _(data)
.flatMap(_.values)
.map((item) => { if (typeof item === 'string') { return item; } else { return; } })
.value()
console.log('result', result);
答案 0 :(得分:6)
你不需要lodash,你可以使用地图
使用普通的JS <强> DEMO
强>
const tags = [{
"display": "tag1",
"value": "tag1"
}, {
"display": "tag2",
"value": "tag2"
}]
var result = tags.map(a => a.display);
console.log(result);