龙岩易富通日常工作笔记
记录日常工作中的点点滴滴
wx.request({
url: 'https://***.com/test',
data: { id: 1},
method: 'POST',
header: { 'content-type': 'application/x-www-form-urlencoded' },
success: function(res){
console.log(res.data);
}
})
发表评论