本文整理汇总了TypeScript中lodash.toPath函数的典型用法代码示例。如果您正苦于以下问题:TypeScript toPath函数的具体用法?TypeScript toPath怎么用?TypeScript toPath使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了toPath函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: inject
selects = _.reduce(fields, (result, field, index) => {
let path = _.toPath(field),
table = path.shift(),
column = path.shift(),
joinModel = inject(table),
meta = this['_columns'][`_${table}`] || this['_joins'][`_${table}`];
if (meta['type'] === 'column') {
result = _.concat(result, [`${this['_tableName']}.${this['_columns'][`_${field}`]['value']} col_${index}`]);
} else if (!!column) {
result = _.concat(result, [`${joinModel['_tableName']}.${joinModel['_columns'][`_${column}`]['value']} col_${index}`]);
} else {
result = _.concat(result, _.map(joinModel['_columns'], (column, _index) => `${joinModel['_tableName']}.${column['value']} col_${index + _index}`));
}
return result;
}, selects);
示例2:
doc = _.reduce(row, (obj, value, index) => {
path = _.toPath(fields[index]);
// 将日期 Date 类型转换为 Moment 类型
if (!!value && value.constructor.name === 'Date') value = m(value);
return _.set(obj, path, value);
}, {});