wxd
/
MShopWeApp
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Plain Diff
Browse Code »
Commit
b66e52d4c75c8f68438e3bf142036957468cd467
Authored by
后端研发-苏明海
2019-12-28 16:45:34 +0800
2 parents
4dab8eb6
da67cf7b
Merge branch 'qa' into 'master'
Qa See merge request
!223
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
utils/request.js
utils/request.js
View file @
b66e52d
...
...
@@ -209,7 +209,7 @@ module.exports = {
209
209
time_limit_get(time,url,data){
210
210
var req=this.get(url,data);
211
211
setTimeout(function () {
212
-
req.abort();
212
+
if(req)
req.abort();
213
213
},time*1000)
214
214
}
215
215
...
...