mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 19:10:54 +00:00
word change to string
This commit is contained in:
parent
894634d4e6
commit
f00ac81008
@ -48,13 +48,13 @@ func (p *ControllerRegistor) Add(pattern string, c ControllerInterface) {
|
|||||||
expr = part[index:]
|
expr = part[index:]
|
||||||
part = part[:index]
|
part = part[:index]
|
||||||
//match /user/:id:int ([0-9]+)
|
//match /user/:id:int ([0-9]+)
|
||||||
//match /post/:username:word ([\w]+)
|
//match /post/:username:string ([\w]+)
|
||||||
} else if lindex := strings.LastIndex(part, ":"); lindex != 0 {
|
} else if lindex := strings.LastIndex(part, ":"); lindex != 0 {
|
||||||
switch part[lindex:] {
|
switch part[lindex:] {
|
||||||
case ":int":
|
case ":int":
|
||||||
expr = "([0-9]+)"
|
expr = "([0-9]+)"
|
||||||
part = part[:lindex]
|
part = part[:lindex]
|
||||||
case ":word":
|
case ":string":
|
||||||
expr = `([\w]+)`
|
expr = `([\w]+)`
|
||||||
part = part[:lindex]
|
part = part[:lindex]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user