Skip to content

Commit 5443027

Browse files
committed
feat: a simple function parse url Params | 解析url params 简单实现
1 parent 902ac95 commit 5443027

File tree

6 files changed

+53
-4
lines changed

6 files changed

+53
-4
lines changed

algorithm/urlParams.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
})()

designPattern/simpleFactory.js

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ function test() {
55

66

77
function ObjectFactory() {
8-
debugger
98
var obj = {};
109
// 获取第一个参数作为constructor
1110
var Constructor = Array.prototype.shift.call(arguments);

renderTemplate/index.js

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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;

src/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ import designPattern from "../designPattern"
2121

2222
// url parser
2323
import url from "../url"
24+
import { urlParams } from "../algorithm/urlParams"
25+
import * as renderTemplate from "../renderTemplate"

url/index.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export const Url = {
6464
}
6565
};
6666
// test
67-
(()=>{
67+
(() => {
6868
let result
6969
result = Url.parse('http://localhost:8080/');
7070
console.log(result)
@@ -75,6 +75,4 @@ export const Url = {
7575
result = Url.isAbsolute('://localhost:8080/');
7676
console.log(result)
7777

78-
debugger;
79-
8078
})(window)

vnodeRender/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)