Browse Source

Merge branch 'master' of 208.97.141.22:Matheus/go-bootstrap

Matheus 6 years ago
parent
commit
5fd13f43de
2 changed files with 4 additions and 3 deletions
  1. 2 2
      core/router/main.go
  2. 2 1
      main.go

+ 2 - 2
core/router/main.go

@@ -7,7 +7,7 @@ import (
7 7
 	"strings"
8 8
 )
9 9
 
10
-type closure func(http.ResponseWriter, *http.Request)
10
+type closure func(http.ResponseWriter, *http.Request, []string)
11 11
 
12 12
 type route struct {
13 13
 	Pattern string
@@ -37,7 +37,7 @@ func Match(w http.ResponseWriter, r *http.Request) {
37 37
 		items := regexSubmatch(pattern, url)
38 38
 
39 39
 		if items[0] == url {
40
-			element.Handler(w, r)
40
+			element.Handler(w, r, items)
41 41
 		}
42 42
 	}
43 43
 }

+ 2 - 1
main.go

@@ -14,7 +14,8 @@ func main() {
14 14
 
15 15
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
16 16
 
17
-		router.Add(`\/(.*)`, func(w http.ResponseWriter, r *http.Request) {
17
+		router.Add(`\/(.*)`, func(w http.ResponseWriter, r *http.Request, vars []string) {
18
+			fmt.Println(vars)
18 19
 			fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
19 20
 		})
20 21