提交 a7e5d0d1a0cb97e8b3e4529bce3fdbf30c646d0d

作者 pangy
1 个父辈 962a15a2

接口报错

... ... @@ -527,12 +527,12 @@ Page({
527 527 success: function(res) {
528 528 console.log(res)
529 529 wx.hideLoading()
530   - if (res.statusCode == 200) {
  530 + if (res.statusCode < 300) {
531 531 wx.navigateBack({
532 532 delta: 1
533 533 })
534 534 } else {
535   - that.showtoast(res.data.message)
  535 + that.showtoast(res.data.message ? res.data.message : '请求出错')
536 536 }
537 537 },
538 538 fail(res) {
... ... @@ -659,12 +659,12 @@ Page({
659 659 success: function (res) {
660 660 console.log(res)
661 661 wx.hideLoading()
662   - if (res.statusCode == 200) {
  662 + if (res.statusCode < 300) {
663 663 wx.navigateBack({
664 664 delta: 1
665 665 })
666 666 } else {
667   - that.showtoast(res.data.message)
  667 + that.showtoast(res.data.message ? res.data.message : '请求出错')
668 668 }
669 669 },
670 670 fail(res) {
... ...
... ... @@ -1420,19 +1420,14 @@ Page({
1420 1420 },
1421 1421 success: function(res) {
1422 1422 console.log(res)
1423   - if (res.statusCode == 200) {
  1423 + if (res.statusCode < 300) {
1424 1424 wx.navigateBack({
1425 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 1433 fail(res) {
... ...
注册登录 后发表评论