|
@@ -2,6 +2,8 @@ import { get, isNil } from 'lodash-es';
|
|
|
|
|
|
/** 根据配置中的 formatter 将文本格式并返回 */
|
|
|
export function getFormattedText(data: any, formatter: string, trans?: Record<string, string>, defaultValue?: any): string {
|
|
|
+ if (!data) return formatter;
|
|
|
+
|
|
|
// e.g. 'pre${prop[0].name}suf' => ['pre${prop[0].name}suf', 'prop[0].name']
|
|
|
const exp = /\$\{([\w|\.|\[|\]]*)\}/g;
|
|
|
const res = exp.exec(formatter);
|