mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vweb: fix [post] route matching
This commit is contained in:
parent
555e8cada6
commit
cfc56b24fb
@ -473,7 +473,7 @@ fn handle_conn<T>(mut conn net.TcpConn, mut app T, routes map[string]Route) {
|
|||||||
// should be called first.
|
// should be called first.
|
||||||
if !route.path.contains('/:') && url_words == route_words {
|
if !route.path.contains('/:') && url_words == route_words {
|
||||||
// We found a match
|
// We found a match
|
||||||
if req.method == .post {
|
if req.method == .post && method.args.len > 0 {
|
||||||
// Populate method args with form values
|
// Populate method args with form values
|
||||||
mut args := []string{cap: method.args.len}
|
mut args := []string{cap: method.args.len}
|
||||||
for param in method.args {
|
for param in method.args {
|
||||||
|
Loading…
Reference in New Issue
Block a user