diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 5c0df5c..cac36f4 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,12 +4,8 @@
-
-
-
+
-
-
@@ -25,6 +21,7 @@
+
@@ -42,11 +39,13 @@
+
+
@@ -282,7 +281,7 @@
-
+
@@ -449,7 +448,7 @@
-
+
1500458878821
@@ -675,11 +674,18 @@
1523304665400
-
+
+ 1542123502500
+
+
+
+ 1542123502500
+
+
-
+
@@ -692,6 +698,7 @@
+
@@ -738,7 +745,8 @@
-
+
+
diff --git a/application.go b/application.go
index aea543d..8dcd786 100644
--- a/application.go
+++ b/application.go
@@ -266,6 +266,11 @@ func (this *Application) handler(w http.ResponseWriter, req *http.Request) {
//header默认设置
header := w.Header()
header.Set("Content-Type", "text/html; charset=utf-8")
+
+ //url去掉参数并序列化
+ context.HandlerStr, context.RouterString = this.urlSer(context.HandlerStr)
+
+
//访问拦截true继续false暂停
connectListenerLen := len(this.connectListener)
if connectListenerLen != 0 {
@@ -278,8 +283,7 @@ func (this *Application) handler(w http.ResponseWriter, req *http.Request) {
}
}
}
- o, s = this.urlSer(context.HandlerStr)
- context.RouterString = s
+
//接口服务
//if len(s) == 3 {
// //如果满足规则则路由到对应控制器去