Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
GMNetService
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
GMNetService
Commits
2b2fa1ca
Commit
2b2fa1ca
authored
Sep 20, 2017
by
汪洋
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'wangjun/dev-GMNetService' into 'master'
删除httpcode=70006通知的处理 See merge request
!3
parents
e54fe169
b23fb280
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
11 deletions
+0
-11
WMNetService.h
GMNetService/Classes/WMNetService.h
+0
-1
WMNetService.m
GMNetService/Classes/WMNetService.m
+0
-10
No files found.
GMNetService/Classes/WMNetService.h
View file @
2b2fa1ca
...
...
@@ -35,7 +35,6 @@
@property
(
nonatomic
,
strong
)
NSString
*
webHost
;
@property
(
nonatomic
,
strong
)
NSString
*
loginExpiredName
;
@property
(
nonatomic
,
strong
)
NSString
*
urlCommonParameters
;
@property
(
nonatomic
,
copy
,
readonly
)
NSString
*
phoneAuthenticationName
;
//普通请求网络之前调用
@property
(
nonatomic
,
copy
)
void
(
^
beforeAction
)
(
void
);
//上传操作之前调用,返回一个HttpHeader, 类型是NSDictionary
...
...
GMNetService/Classes/WMNetService.m
View file @
2b2fa1ca
...
...
@@ -12,14 +12,6 @@
@implementation
WMNetService
-
(
instancetype
)
init
{
self
=
[
super
init
];
if
(
self
)
{
_phoneAuthenticationName
=
@"PHONE_AUTHENTICATION"
;
}
return
self
;
}
+
(
instancetype
)
sharedInstance
{
static
dispatch_once_t
onceToken
;
...
...
@@ -218,8 +210,6 @@
// TODO: 可以根据不同的statusCode返回不同的提示
if
(
statusCode
==
HttpStatusCodeUnauthorized
){
[[
NSNotificationCenter
defaultCenter
]
postNotificationName
:
_loginExpiredName
object
:
nil
];
}
else
if
(
statusCode
==
HttpStatusCodeAuthentication
)
{
[[
NSNotificationCenter
defaultCenter
]
postNotificationName
:
_phoneAuthenticationName
object
:
nil
];
}
else
{
errorStr
=
[
NSString
stringWithFormat
:
@"网络错误: %ld"
,
statusCode
];
debugLog
(
@"%@"
,
errorStr
);
...
...
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