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
 	"strings"
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
 type route struct {
12
 type route struct {
13
 	Pattern string
13
 	Pattern string
37
 		items := regexSubmatch(pattern, url)
37
 		items := regexSubmatch(pattern, url)
38
 
38
 
39
 		if items[0] == url {
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
 
14
 
15
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
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
 			fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
19
 			fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
19
 		})
20
 		})
20
 
21