File tree 6 files changed +53
-4
lines changed
6 files changed +53
-4
lines changed Original file line number Diff line number Diff line change
1
+ export function parseParam ( url ) {
2
+ // 正则解析出 ? 后面的内容
3
+ // 对后面的内容split &
4
+ // split =
5
+ // 兼容没有= 的key
6
+ const reg = / .+ \? ( .+ ) $ / ;
7
+ const paramStr = reg . exec ( url ) [ 1 ] ;
8
+ const obj = { } ;
9
+ paramStr . split ( '&' ) . forEach ( ( keyValueStr ) => {
10
+ let [ key , value ] = keyValueStr . split ( '=' ) ;
11
+ if ( Object . prototype . toString . call ( value ) !== '[object Undefined]' ) {
12
+ value = encodeURIComponent ( value ) ;
13
+ value = / ^ \d + $ / . test ( value ) ? parseFloat ( value ) : value
14
+ if ( obj . hasOwnProperty ( key ) ) {
15
+ obj [ key ] = [ ] . concat ( obj [ key ] , value )
16
+ } else {
17
+ obj [ key ] = value ;
18
+ }
19
+ } else {
20
+ obj [ key ] = true ;
21
+ }
22
+ } )
23
+ }
24
+ ( ( ) => {
25
+ const url = "http://www.badd.com?a=2&b&a=%22&a=22"
26
+ parseParam ( url )
27
+ } ) ( )
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ function test() {
5
5
6
6
7
7
function ObjectFactory ( ) {
8
- debugger
9
8
var obj = { } ;
10
9
// 获取第一个参数作为constructor
11
10
var Constructor = Array . prototype . shift . call ( arguments ) ;
Original file line number Diff line number Diff line change
1
+ const template = `姓名:{{name}} 年龄:{{age}} 性别:{{sex}}`
2
+ const data = {
3
+ name : "张三" ,
4
+ age : 23 ,
5
+ sex : '男'
6
+ }
7
+
8
+
9
+ export function render ( template , data ) {
10
+ let _template = template ;
11
+ const reg = / \{ \{ ( \w + ) \} \} / g
12
+ // while (reg.test(_template)) {
13
+ _template = _template . replace ( reg , ( ...args ) => {
14
+ const key = args [ 1 ]
15
+ return data [ key . trim ( ) ] ;
16
+ } )
17
+ // }
18
+ return _template
19
+ }
20
+
21
+ const result = render ( template , data ) ;
22
+ console . log ( result )
23
+ debugger ;
Original file line number Diff line number Diff line change @@ -21,3 +21,5 @@ import designPattern from "../designPattern"
21
21
22
22
// url parser
23
23
import url from "../url"
24
+ import { urlParams } from "../algorithm/urlParams"
25
+ import * as renderTemplate from "../renderTemplate"
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ export const Url = {
64
64
}
65
65
} ;
66
66
// test
67
- ( ( ) => {
67
+ ( ( ) => {
68
68
let result
69
69
result = Url . parse ( 'http://localhost:8080/' ) ;
70
70
console . log ( result )
@@ -75,6 +75,4 @@ export const Url = {
75
75
result = Url . isAbsolute ( '://localhost:8080/' ) ;
76
76
console . log ( result )
77
77
78
- debugger ;
79
-
80
78
} ) ( window )
You can’t perform that action at this time.
0 commit comments