提交 a7e5d0d1a0cb97e8b3e4529bce3fdbf30c646d0d

作者 pangy
1 个父辈 962a15a2

接口报错

@@ -527,12 +527,12 @@ Page({ @@ -527,12 +527,12 @@ Page({
527 success: function(res) { 527 success: function(res) {
528 console.log(res) 528 console.log(res)
529 wx.hideLoading() 529 wx.hideLoading()
530 - if (res.statusCode == 200) { 530 + if (res.statusCode < 300) {
531 wx.navigateBack({ 531 wx.navigateBack({
532 delta: 1 532 delta: 1
533 }) 533 })
534 } else { 534 } else {
535 - that.showtoast(res.data.message) 535 + that.showtoast(res.data.message ? res.data.message : '请求出错')
536 } 536 }
537 }, 537 },
538 fail(res) { 538 fail(res) {
@@ -659,12 +659,12 @@ Page({ @@ -659,12 +659,12 @@ Page({
659 success: function (res) { 659 success: function (res) {
660 console.log(res) 660 console.log(res)
661 wx.hideLoading() 661 wx.hideLoading()
662 - if (res.statusCode == 200) { 662 + if (res.statusCode < 300) {
663 wx.navigateBack({ 663 wx.navigateBack({
664 delta: 1 664 delta: 1
665 }) 665 })
666 } else { 666 } else {
667 - that.showtoast(res.data.message) 667 + that.showtoast(res.data.message ? res.data.message : '请求出错')
668 } 668 }
669 }, 669 },
670 fail(res) { 670 fail(res) {
@@ -1420,19 +1420,14 @@ Page({ @@ -1420,19 +1420,14 @@ Page({
1420 }, 1420 },
1421 success: function(res) { 1421 success: function(res) {
1422 console.log(res) 1422 console.log(res)
1423 - if (res.statusCode == 200) { 1423 + if (res.statusCode < 300) {
1424 wx.navigateBack({ 1424 wx.navigateBack({
1425 delta:1 1425 delta:1
1426 }) 1426 })
1427 - // ({  
1428 - // url: '../home/home',  
1429 - // })  
1430 - } else if (res.data.code == 400){  
1431 - if (res.data.errors.email){  
1432 - that.showtoast('邮箱格式有误')  
1433 - }else{  
1434 - that.showtoast(res.data.message)  
1435 - } 1427 + } else if (res.data.code == 400 && res.data.errors.email){
  1428 + that.showtoast('邮箱格式有误')
  1429 + } else {
  1430 + that.showtoast(res.data.message ? res.data.message : '请求出错')
1436 } 1431 }
1437 }, 1432 },
1438 fail(res) { 1433 fail(res) {
注册登录 后发表评论