Page({
data:{
feedback: []
},
onload:function() {
wx.showToast({
title: '加载中',
icon: 'loading',
duration: 1000
});
wx.request({
url: '
https://www.baidu.com', //仅为示例,并非真实的接口地址
data: { },
header: {
'content-type': 'application/json' // 默认值
},
success: function (res) {
console.log(res.data)
}
})
}
});