-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
template.js
114 lines (77 loc) · 2.49 KB
/
template.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
* Author : OBKoro1
* Date : 2022-01-16 15:44:54
* LastEditors : OBKoro1
* LastEditTime : 2022-01-16 15:46:41
* FilePath : /js-base/src/scene/template.js
* description : 实现一个简单的模板引擎 (用replace 和不用 replace)
* koroFileheader VSCode插件
* Copyright (c) 2022 by OBKoro1, All Rights Reserved.
*/
// 蚂蚁金服-保险部门
// 实现一个简单的模板引擎(用replace 和不用 replace)
function template(str) {
}
// 不用replace
// function template(str) {
// }
const tpl = template('<p>hey there {{ name }} {{ name }}</p>')
const res = tpl({ name: 'Neo' })
console.log('template', res)
// 答案慎看
// 答案慎看
// 答案慎看
// 答案慎看
// 用replace
// function template(str) {
// return function(obj) {
// for (let key in obj) {
// let reg = new RegExp(`{{\\s*${key}\\s*}}`, 'g');
// str = str.replace(reg, obj[key])
// }
// return str
// }
// }
// // Vue的方式:拼字符串 使用 new Function + with 模板引擎编译
// // 匹配 截取字符串 装进数组里面
// function template(str) {
// return function(obj) {
// let arr = []
// let reg = new RegExp(`{{\\s*(.+?)\\s*}}`);
// // 匹配{{}} 添加字符到arr中
// while (str.length) {
// let res = reg.exec(str)
// if (res) {
// let noMatch = str.slice(0, res.index)
// str = str.slice(res.index)
// // 前面没匹配的部分
// arr.push(`_s('${noMatch}')`)
// // 匹配到{{ key }} 获取key
// arr.push(`_getValue('${res[1]}')`)
// str = str.slice(res[0].length)
// } else {
// // 没有匹配了
// arr.push(`_s('${str}')`)
// str = ''
// }
// }
// // 获取obj的值
// obj._getValue = function(key) {
// return this[key]
// }
// // 字符串化
// obj._s = function(val) {
// if (typeof val === 'object') return JSON.stringify(val);
// return val
// }
// // arr: ['<p>hey there ', 'name', ' ', 'name', '</p>']
// let code = arr.join('+')
// let render = new Function(`with(this){return _s(${code})}`)
// // 绑定this指向 并执行
// let template = render.call(obj)
// return template
// }
// }
// var tpl = template('<p>hey there {{ name }} {{ name }}</p>');
// let res = tpl({ name: 'Neo' });
// console.log('template', res)