我也遇到 小程序送包接收到,也分析出送此包的IP地址和端口,根据此IP地址和端口回送信息, 小程序虽然收到了(size对的),但是res.message没有任何信息(明明设置了数据)。
UDPSocket.onMessage 无法接收消息?UDPSocket.onMessage 在不先调用 UDPSocket.send 无法接受消息that.udpSocket = wx.createUDPSocket(); that.udpSocket.bind(35675); that.udpSocket.send({ address: '192.168.1.120', port: 54321, message: "hello world!" }); that.udpSocket.onListening(function(res) { console.log(res); }); that.udpSocket.onMessage(function(res) { console.log(res.message); console.log(res.remoteInfo.address); console.log(res.remoteInfo.port); console.log(res.remoteInfo.size); }); //基础库2.10.2
2020-09-27转base64 然后 wx.request
如何同时上传多张图片到服务器若要上传多张图片,使用wx.uploadFile只能一张一张的循环上传! 有没有什么办法不循环,一次上传多张! 或者,把 wx.chooseImage 上传图片的路径改为 本地路径 或 可以使用 浏览器 打开的路径!
2018-11-28在小程序新建的时候就应该输入你正式的AppID,如果使用修改的AppID,则无法使用。 不能通过修改project.config.json中的AppID来实现: 必须重新创建新的小程序项目。
微信小程序code 换取 session_key时报40029错误我是微信小程序客户端将获取的code传到后台请求 换取 session_key,返回 40029, appid是当前登录用户的能获取,其他不能获取,我想问下是不是要发布后,别人的账号也能获取
2018-08-02