Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
23470806
Commit
23470806
authored
Jun 29, 2017
by
xlwcom
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the bug in the "ParseBool" function in the file of config.go
parent
cab8458c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
config.go
config/config.go
+3
-3
No files found.
config/config.go
View file @
23470806
...
...
@@ -189,16 +189,16 @@ func ParseBool(val interface{}) (value bool, err error) {
return
false
,
nil
}
case
int8
,
int32
,
int64
:
strV
:=
fmt
.
Sprintf
(
"%
s"
,
v
)
strV
:=
fmt
.
Sprintf
(
"%
d"
,
v
)
// w 由 %s 修改为 %d
if
strV
==
"1"
{
return
true
,
nil
}
else
if
strV
==
"0"
{
return
false
,
nil
}
case
float64
:
if
v
==
1
{
if
v
==
1
.0
{
// w 由 1 修改为 1.0
return
true
,
nil
}
else
if
v
==
0
{
}
else
if
v
==
0
.0
{
// w 由 0 修改为 0.0
return
false
,
nil
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment