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},
success: function (res) {
console.log(getApp().globalData.comments)
that.setData({
status : 1
})
wx.hideLoading({
})
console.log("success", res)
},
fail: function (res) {
console.log("error", res)
}
})
},
})
其中getApp().globalData.comments储存了我要传到python后端的数据,但是当我每次打开这个页面的时候,刚开始我看python后端显示接收到了数据,
请求成功了,但是后面这个页面会自动刷新然后小程序会回到我设置的那个编译模式的那个界面,这到底是什么原因会导致这个小程序自动刷新