过滤空值 过滤空值const valuesData = _.pickBy(fieldsValue, (v, k) => { console.log(v, k); return v !== null && v !== '' && v !== undefined;});