1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| /*
| 替换多语言
| */
|
| export default function (editor, str) {
| const langArgs = editor.config.langArgs || []
| let result = str
|
| langArgs.forEach(item => {
| const reg = item.reg
| const val = item.val
|
| if (reg.test(result)) {
| result = result.replace(reg, function () {
| return val
| })
| }
| })
|
| return result
| }
|
|