收藏
回答

调用wx.request一直有问题。请问这个该怎么解决?

// pages/Python/ciyun/ciyun.js
Page({
    data: {
        status : 0
    },


    onLoad :function(){
        var that = this
        wx.showLoading({
            title'加载中',
        })
        wx.request({
            url'http://127.0.0.1:5000/upload',
            method"POST",
            data: {text: getApp().globalData.comments},
            successfunction (res{
                console.log(getApp().globalData.comments)
                that.setData({
                    status : 1
                })
                wx.hideLoading({


                })
                console.log("success", res)
            },
            failfunction (res{
                console.log("error", res)
            }
        })
    },
})

其中getApp().globalData.comments储存了我要传到python后端的数据,但是当我每次打开这个页面的时候,刚开始我看python后端显示接收到了数据,
请求成功了,但是后面这个页面会自动刷新然后小程序会回到我设置的那个编译模式的那个界面,这到底是什么原因会导致这个小程序自动刷新
回答关注问题邀请回答
收藏

1 个回答

  • 陈宇明
    陈宇明
    2022-02-09
    是否还有其他自动刷新的代码逻辑?
    


    2022-02-09
    有用
    回复 2
    • Evan
      Evan
      发表于移动端
      2022-02-09
      没有啊
      2022-02-09
      回复
    • Evan
      Evan
      发表于移动端
      2022-02-10
      请问我后面把那个热重载打开来了就不会自动刷新了,这个你知道是为什么吗
      2022-02-10
      回复
登录 后发表内容