Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
rym-util
Project
Overview
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhengqiuyun
rym-util
Commits
b3f0438b
Commit
b3f0438b
authored
Sep 01, 2022
by
zhengqiuyun86
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
返回封装优化
parent
01c86bd1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
15 deletions
+3
-15
Response.go
getWay/Response.go
+3
-15
No files found.
getWay/Response.go
View file @
b3f0438b
...
@@ -65,21 +65,9 @@ func SuccessData(c *gin.Context, data interface{}) {
...
@@ -65,21 +65,9 @@ func SuccessData(c *gin.Context, data interface{}) {
logEnd
(
c
,
resp
)
logEnd
(
c
,
resp
)
}
}
type
WxResponse
struct
{
func
SuccessString
(
c
*
gin
.
Context
,
format
string
,
values
...
interface
{})
{
Code
string
`json:"code"`
c
.
String
(
http
.
StatusOK
,
format
,
values
)
Message
string
`json:"message"`
logEnd
(
c
,
fmt
.
Sprintf
(
format
,
values
))
}
func
WxSuccess
(
c
*
gin
.
Context
)
{
resp
:=
WxResponse
{
"SUCCESS"
,
"成功"
}
c
.
JSON
(
http
.
StatusOK
,
resp
)
logEnd
(
c
,
resp
)
}
func
AliSuccess
(
c
*
gin
.
Context
)
{
resp
:=
"success"
c
.
JSON
(
http
.
StatusOK
,
resp
)
logEnd
(
c
,
resp
)
}
}
func
logEnd
(
c
*
gin
.
Context
,
data
interface
{})
{
func
logEnd
(
c
*
gin
.
Context
,
data
interface
{})
{
...
...
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