method: 'POST', header:{ 'content-type': 'application/x-www-form-urlencoded' }, POST也获取不到,Network里看到也是成功的
PHP为什么获取不到小程序传的参数?wx.request({ url: '*********', method: 'GET', header:{ 'content-Type': 'application/json' }, data: { 'finalData': '1', }, success(res) { console.log(res.data); if (res.data.status == 0) { wx.showToast({ title: '提交失败!!!', icon: 'loading', duration: 1500 }) } else { wx.showToast({ title: '提交成功!!!', //这里打印出登录成功 icon: 'success', duration: 1000 }) } } }); <?php $phoneCode = $_GET['finalData']; echo $phoneCode; ?> [图片]
2023-08-23确实是你图片的问题,图片边缘有透明度。
图片与图片直接为什么会产生一条白色线?百度了很多方法都不行,font-size0,flex布局,img转为块元素都不行。 [图片] [图片] 代码片段:https://developers.weixin.qq.com/s/u8ZB1sm67PiI
2020-06-29