import _ from 'lodash-es'; /** * 功能类似 lodash.get 但是当取值为 null 时也直接返回默认值 */ export const get: typeof _.get = (o, p, defaultValue = '/') => { const d = _.get(o, p, defaultValue); return d === null ? defaultValue : d; };