Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
e34f8479
authored
2014-12-17 15:52:48 +0800
by
Jianbo Feng
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add all type support for UrlFor’s params
1 parent
e65d8797
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
controller.go
router.go
templatefunc.go
controller.go
View file @
e34f847
...
...
@@ -289,7 +289,7 @@ func (c *Controller) StopRun() {
// UrlFor does another controller handler in this request function.
// it goes to this controller method if endpoint is not clear.
func
(
c
*
Controller
)
UrlFor
(
endpoint
string
,
values
...
string
)
string
{
func
(
c
*
Controller
)
UrlFor
(
endpoint
string
,
values
...
interface
{}
)
string
{
if
len
(
endpoint
)
<=
0
{
return
""
}
...
...
router.go
View file @
e34f847
...
...
@@ -429,7 +429,7 @@ func (p *ControllerRegistor) insertFilterRouter(pos int, mr *FilterRouter) error
// UrlFor does another controller handler in this request function.
// it can access any controller method.
func
(
p
*
ControllerRegistor
)
UrlFor
(
endpoint
string
,
values
...
string
)
string
{
func
(
p
*
ControllerRegistor
)
UrlFor
(
endpoint
string
,
values
...
interface
{}
)
string
{
paths
:=
strings
.
Split
(
endpoint
,
"."
)
if
len
(
paths
)
<=
1
{
Warn
(
"urlfor endpoint must like path.controller.method"
)
...
...
@@ -444,9 +444,9 @@ func (p *ControllerRegistor) UrlFor(endpoint string, values ...string) string {
key
:=
""
for
k
,
v
:=
range
values
{
if
k
%
2
==
0
{
key
=
v
key
=
fmt
.
Sprint
(
v
)
}
else
{
params
[
key
]
=
v
params
[
key
]
=
fmt
.
Sprint
(
v
)
}
}
}
...
...
templatefunc.go
View file @
e34f847
...
...
@@ -246,7 +246,7 @@ func Htmlunquote(src string) string {
// /user/John%20Doe
//
// more detail http://beego.me/docs/mvc/controller/urlbuilding.md
func
UrlFor
(
endpoint
string
,
values
...
string
)
string
{
func
UrlFor
(
endpoint
string
,
values
...
interface
{}
)
string
{
return
BeeApp
.
Handlers
.
UrlFor
(
endpoint
,
values
...
)
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment