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
9e66bb6f
Commit
9e66bb6f
authored
Aug 11, 2022
by
zhengqiuyun86
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
初始化
parent
3a0b536a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
3 deletions
+33
-3
GlobalException.go
exception/GlobalException.go
+13
-3
Error.go
getWay/Error.go
+20
-0
No files found.
exception/GlobalException.go
View file @
9e66bb6f
...
@@ -5,6 +5,7 @@ import (
...
@@ -5,6 +5,7 @@ import (
"git.168cad.top/zhengqiuyun/rym-util/log"
"git.168cad.top/zhengqiuyun/rym-util/log"
"github.com/go-playground/validator/v10"
"github.com/go-playground/validator/v10"
"reflect"
"reflect"
"strings"
)
)
func
ThrowsErr
(
err
error
)
{
func
ThrowsErr
(
err
error
)
{
...
@@ -39,11 +40,14 @@ func getError(errs validator.ValidationErrors, r interface{}) string {
...
@@ -39,11 +40,14 @@ func getError(errs validator.ValidationErrors, r interface{}) string {
if
errText
!=
""
{
if
errText
!=
""
{
return
errText
return
errText
}
}
fieldName
:=
filed
.
Tag
.
Get
(
"json"
)
jsonTag
:=
filed
.
Tag
.
Get
(
"json"
)
if
fieldName
==
""
{
fieldName
:=
""
if
jsonTag
==
""
{
fieldName
=
fieldError
.
Field
()
fieldName
=
fieldError
.
Field
()
}
else
{
fieldName
=
strings
.
Split
(
jsonTag
,
","
)[
0
]
}
}
return
fieldName
+
"
:
"
+
fieldError
.
Tag
()
return
fieldName
+
"
"
+
fieldError
.
Tag
()
}
}
return
""
return
""
}
}
...
@@ -62,6 +66,12 @@ func ThrowsErrS(err string) {
...
@@ -62,6 +66,12 @@ func ThrowsErrS(err string) {
}
}
}
}
func
AssertThrowableErr
(
throwable
bool
,
err
error
)
{
if
throwable
{
log
.
Error
(
err
.
Error
())
panic
(
err
)
}
}
func
AssertThrowable
(
throwable
bool
,
err
string
)
{
func
AssertThrowable
(
throwable
bool
,
err
string
)
{
if
throwable
{
if
throwable
{
log
.
Error
(
err
)
log
.
Error
(
err
)
...
...
getWay/Error.go
View file @
9e66bb6f
package
getWay
package
getWay
import
"github.com/gin-gonic/gin"
type
Error
struct
{
type
Error
struct
{
Code
State
Code
State
}
}
func
ExceptionGetWayCatch
(
c
*
gin
.
Context
)
{
err
:=
recover
()
//获取异常
if
err
!=
nil
{
switch
err
.
(
type
)
{
case
Error
:
e
:=
(
err
)
.
(
Error
)
FailGetWay
(
c
,
e
.
Code
)
break
}
}
}
func
ThrowsGetWayErr
(
code
State
)
{
func
ThrowsGetWayErr
(
code
State
)
{
if
&
code
!=
nil
{
if
&
code
!=
nil
{
panic
(
Error
{
code
})
panic
(
Error
{
code
})
}
}
}
}
func
AssertThrowsGetWayErr
(
throwable
bool
,
code
State
)
{
if
&
code
!=
nil
{
panic
(
Error
{
code
})
}
}
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