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
84da1c92
authored
2014-07-17 15:56:06 +0800
by
fuxiaohei
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
code style simplify
1 parent
f733b570
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
config/json.go
config/json.go
View file @
84da1c9
...
...
@@ -57,7 +57,7 @@ type JsonConfigContainer struct {
// Bool returns the boolean value for a given key.
func
(
c
*
JsonConfigContainer
)
Bool
(
key
string
)
(
bool
,
error
)
{
val
:=
c
.
get
d
ata
(
key
)
val
:=
c
.
get
D
ata
(
key
)
if
val
!=
nil
{
if
v
,
ok
:=
val
.
(
bool
);
ok
{
return
v
,
nil
...
...
@@ -69,7 +69,7 @@ func (c *JsonConfigContainer) Bool(key string) (bool, error) {
// Int returns the integer value for a given key.
func
(
c
*
JsonConfigContainer
)
Int
(
key
string
)
(
int
,
error
)
{
val
:=
c
.
get
d
ata
(
key
)
val
:=
c
.
get
D
ata
(
key
)
if
val
!=
nil
{
if
v
,
ok
:=
val
.
(
float64
);
ok
{
return
int
(
v
),
nil
...
...
@@ -81,7 +81,7 @@ func (c *JsonConfigContainer) Int(key string) (int, error) {
// Int64 returns the int64 value for a given key.
func
(
c
*
JsonConfigContainer
)
Int64
(
key
string
)
(
int64
,
error
)
{
val
:=
c
.
get
d
ata
(
key
)
val
:=
c
.
get
D
ata
(
key
)
if
val
!=
nil
{
if
v
,
ok
:=
val
.
(
float64
);
ok
{
return
int64
(
v
),
nil
...
...
@@ -93,7 +93,7 @@ func (c *JsonConfigContainer) Int64(key string) (int64, error) {
// Float returns the float value for a given key.
func
(
c
*
JsonConfigContainer
)
Float
(
key
string
)
(
float64
,
error
)
{
val
:=
c
.
get
d
ata
(
key
)
val
:=
c
.
get
D
ata
(
key
)
if
val
!=
nil
{
if
v
,
ok
:=
val
.
(
float64
);
ok
{
return
v
,
nil
...
...
@@ -105,7 +105,7 @@ func (c *JsonConfigContainer) Float(key string) (float64, error) {
// String returns the string value for a given key.
func
(
c
*
JsonConfigContainer
)
String
(
key
string
)
string
{
val
:=
c
.
get
d
ata
(
key
)
val
:=
c
.
get
D
ata
(
key
)
if
val
!=
nil
{
if
v
,
ok
:=
val
.
(
string
);
ok
{
return
v
...
...
@@ -129,7 +129,7 @@ func (c *JsonConfigContainer) Set(key, val string) error {
// DIY returns the raw value by a given key.
func
(
c
*
JsonConfigContainer
)
DIY
(
key
string
)
(
v
interface
{},
err
error
)
{
val
:=
c
.
get
d
ata
(
key
)
val
:=
c
.
get
D
ata
(
key
)
if
val
!=
nil
{
return
val
,
nil
}
...
...
@@ -137,7 +137,7 @@ func (c *JsonConfigContainer) DIY(key string) (v interface{}, err error) {
}
// section.key or key
func
(
c
*
JsonConfigContainer
)
get
d
ata
(
key
string
)
interface
{}
{
func
(
c
*
JsonConfigContainer
)
get
D
ata
(
key
string
)
interface
{}
{
c
.
RLock
()
defer
c
.
RUnlock
()
if
len
(
key
)
==
0
{
...
...
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