收藏
回答

开发工具返回的是正确的数组,真机则返回string,编码也不一样,有人遇到这样的问题么?

Local

res: {data: "{"errno":0,"message":"","data":[{"id":"1","uniaci…n_qr":null,"uid":"1","createtime":"1587566664"}]}", profile: {…}, header: {…}, statusCode: 200, cookies: Array(2), …}

this: Object

Closure (RefreshCompany)

Closure

Window

Global





res.data

res.data

"{"errno":0,"message":"","data":[{"id":"1","uniacid":"2","title":"\u4fe1\u5b9c\u5e02\u4eba\u6c11\u533b\u9662","linkmen":"\u603b\u673a","linkway":"88888888","lng":"0","lat":"0","address":"\u5e7f\u4e1c\u7701\u4fe1\u5b9c\u5e02\u94f6\u6e56\u897f\u8def","pid":"0","url":"www.xysrmyy.cn","thumb":" ","pic":" ","province":"\u5e7f\u4e1c\u7701","city":"\u8302\u540d\u5e02","dist":"\u4fe1\u5b9c\u5e02","qq":" …"


回答关注问题邀请回答
收藏

3 个回答

  • 工号 9527
    工号 9527
    2021-05-28

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2021-05-28
    有用
    回复 9
    • 邓
      2021-05-29
      RefreshCompany: function () {
          let that = this;
          app.util.request({
            url: 'entry/wxapp/listCompanies',
            data: {
              m: app.siteInfo.m,
              uniacid: app.siteInfo.uniacid,
              region_type:wx.getStorageSync('region_type'),
            },
            method : 'post',
            success: function(res) {
              if(res.data.data){
                that.setData({
                  listCompanies: res.data.data,
                  //loading: false // 关闭等待框
                })
                if(that.data.listCompanies){
                  if(that.data.listCompanies.length == 1){
                    that.bindCompany(that.data.listCompanies[0].id,that.data.listCompanies[0].title);
                  }
                }
              }else{
                wx.showModal({
                  title: '缺少服务单位',
                  content: '请先设置服务的单位后再继续',
                  showCancel:false,
                  success: function (res) {
                    wx.reLaunch({
                      url: '../index/index',
                    })
                  }
                })
              }
            },
            complete:function(){
              //loading: false // 关闭等待框
            }
          });
        },
      2021-05-29
      回复
    • 邓
      2021-05-31
      官方的有答复么??
      2021-05-31
      回复
    • 工号 9527
      工号 9527
      2021-06-01回复
      按上边提供可运行的代码片段。
      2021-06-01
      回复
    • 邓
      2021-06-01
      这个就是代码的运行片段!!
      2021-06-01
      回复
    • 工号 9527
      工号 9527
      2021-06-01回复
      https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
      2021-06-01
      回复
    查看更多(4)
  • allen
    allen
    2021-05-28

    正式认证小程序

    2021-05-28
    有用
    回复 2
    • 邓
      2021-05-29
      是不是小程序 也需要给300元认证?这个问题是不是因为没有认证?抢钱的一种方式。。。。。
      2021-05-29
      回复
    • 邓
      2021-05-31
      正式认证了,但问题还是依旧
      2021-05-31
      回复
  • 邓
    2021-05-28

      RefreshCompany: function () {

        let that = this;

        app.util.request({

          url: 'entry/wxapp/listCompanies',

          data: {

            m:        app.siteInfo.m,

            uniacid:  app.siteInfo.uniacid,

            region_type:wx.getStorageSync('region_type'),        

          },

          method : 'post',

          success: function(res) {

            if(res.data.data){

              that.setData({

                listCompanies:    res.data.data,

                //loading:      false // 关闭等待框

              })

              if(that.data.listCompanies){

                if(that.data.listCompanies.length == 1){

                  that.bindCompany(that.data.listCompanies[0].id,that.data.listCompanies[0].title);

                }

              }          

            }else{

              wx.showModal({

                title: '缺少服务单位',

                content: '请先设置服务的单位后再继续',

                showCancel:false,

                success: function (res) {

                  wx.reLaunch({

                    url: '../index/index',

                  })

                }

              })

            }

          },

          complete:function(){

            //loading: false // 关闭等待框

          }

        });

      },


    2021-05-28
    有用
    回复
登录 后发表内容