-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstrategy.html
129 lines (119 loc) · 3.26 KB
/
strategy.html
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Strategy</title>
</head>
<body>
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script>
var validator = {
types: {}, //所有的驗證規則皆會存放於此,稍後會個別定義
messages: [], //個別驗證類型的錯誤訊息
config: {}, //使用者資料各欄位需要被驗證的類型
validate: function (data) { // 使用者資料 - 欄位:值
var i,
msg,
type,
checker,
result_ok;
this.messages = []; //清空所有的錯誤信息
for(i in data) {
if(data.hasOwnProperty(i)) { //判斷使用者欄位是否需要被驗證
type = this.config[i]; //如果需要被驗證,則取出相對應的驗證規則
checker = this.types[type];
if(!type) {
continue; //如果驗證規則不存在,則不處理
}
if(!checker) { //要檢測的規則和錯誤訊息不存在,無法檢測,拋出異常
throw {
name: "ValidationError",
message: "No handler to validate type " + type
};
}
result_ok = checker.validate(data[i]); //驗證
if(!result_ok) { //取得錯誤訊息
msg = "Invalid value for *" + i + "*, " + checker.instructions;
this.messages.push(msg);
}
}
}
return this.hasErrors();
},
//helper
hasErrors:function () {
return this.messages.length !== 0;
}
};
//個別定義驗證規則
//欄位值不可為空
validator.types.isNonEmpty = {
validate:function (value) {
return value !== "";
},
instructions: "the value cannot be empty"
};
//欄位值只能為數字
validator.types.isNumber = {
validate:function (value) {
return !isNaN(value);
},
instructions: "the value can only be a valid number, e.g. 1, 3.14 or 2010"
};
//欄位值是否為英數組合
validator.types.isAlphaNum = {
validate:function (value) {
return !/[^a-z0-9]/i.test(value);
},
instructions: "the value can only contain characters and numbers, no special symbols"
};
//欄位值是否為Email
validator.types.isEmail = {
validate: function(value){
var re = /^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
return re.test(value);
},
instructions: 'use valid email format, e.g. @'
};
//欄位值有最小長度限制,字串大小是否在最小範圍內,設定為3個characters以上(minSize)
validator.types.minSize = {
validate: function(value){
return value.length >= 3;
},
instructions: 'min size is 3 characters'
};
//欄位值有最大長度限制,字串大小是否在最大範圍內,設定為10個characters以內(maxSize)
validator.types.maxSize = {
validate: function(value){
return value.length <= 10;
},
instructions: 'max size is 10 characters'
};
//測試資料
var data = {
first_name: 'Super',
last_name: 'Man',
age: 'unknown',
username: 'o_O',
email: '[email protected]',
confirm_email: 'invalid_email_sample',
password: '12'
};
//定義測試資料每個欄位需要被驗證的類型
validator.config = {
first_name: 'isNonEmpty',
last_name: 'maxSize',
age: 'isNumber',
username: 'isAlphaNum',
email: 'isEmail',
confirm_email: 'isEmail',
password: 'minSize'
};
//若有錯誤,則console出錯誤訊息
validator.validate(data);
if (validator.hasErrors()) {
console.log(validator.messages.join("\n"));
}
</script>
</body>
</html>