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
21e9de18
Commit
21e9de18
authored
Sep 01, 2022
by
zhengqiuyun86
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
返回封装优化
parent
b3f0438b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
Response.go
getWay/Response.go
+4
-3
No files found.
getWay/Response.go
View file @
21e9de18
...
@@ -65,9 +65,10 @@ func SuccessData(c *gin.Context, data interface{}) {
...
@@ -65,9 +65,10 @@ func SuccessData(c *gin.Context, data interface{}) {
logEnd
(
c
,
resp
)
logEnd
(
c
,
resp
)
}
}
func
SuccessString
(
c
*
gin
.
Context
,
format
string
,
values
...
interface
{})
{
func
SuccessString
(
c
*
gin
.
Context
,
data
string
)
{
c
.
String
(
http
.
StatusOK
,
format
,
values
)
c
.
String
(
http
.
StatusOK
,
data
)
logEnd
(
c
,
fmt
.
Sprintf
(
format
,
values
))
c
.
Abort
()
logEnd
(
c
,
data
)
}
}
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