ABCDEFGHIJKLMNOPQRSTUVWXYZ
1
@ 三種 type 的 tracking @ Three types of tracking
2
- Page : 單純 track 使用者造訪頁面- Page : Track user visiting page
3
- Action : 使用者點擊某按鈕的事件- Action : The event that the user clicked on a Button
4
- Event : Form validation 失敗或是 API 回傳值錯誤時的事件- Event : Form validation failed or event with API return error value
5
@ 命名規則@Name Rules
6
- 第一個單字的字首需要大寫- the prefix of the first word needs to be capitalized
7
- {EventName}_{Success or Failed}_{PageName}- {EventName}_{Success or Failed}_{PageName}
8
- 若為一個Action或是Page不需要連結符號'_',如: DepositOnlineSubmi
- In Action or Page tracking, you don't need the link symbol '_',ex: DepositOnlineSubmit
9
- 若為一個Event因為需要回傳成功或是失敗,需要加入連結符號'_',如: Transfer_Success
- In Event tracking, because it needs to be returned successfully or failed, you need to add the link symbol '_', ex: Transfer_Success
10
- 若相同的tracking events出現在不同的page,需寫PageName.- IF the same tracking event appears on different pages, adding the PageName.
11
- - The Rules must be follow 'Camel case'.
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