- 微信云托管的对象存储怎么打不开了?
一直在转圈,自动刷新,但是进不去,不过API正常调用存储,哪位大神解惑一下! [图片]
05-18 - 获取用户头像临时路径后如何上传到自己的服务器?
wx.uploadFile({ url: filePath: this.data.avatarUrl, // 临时路径 name: 'file', // 服务器接收的字段名 data: wx.getStorageSync('openid'), success(uploadRes) { console.log('图片上传成功',uploadRes); onChooseAvatar(e) { const { avatarUrl } = e.detail this.setData({ avatarUrl, }) }, filePath: this.data.avatarUrl, // 临时路径这样写对吗?为什么服务器返回上传失败 服务器源码: function image(){ $input = input(); $id = isset($input['id']) ? $input['id'] : ''; $uploadDir = Config::get('filesystem.disks.public.root') . 'userimage'; $file = Request::instance()->file('image'); $info = $file->move($uploadDir); if ($info) { $imageUrl = Config::get('view_replace_str.__UPLOAD__') . $info->getSaveName(); return $this->success('图片上传成功', ['url' => $imageUrl,$id]); } else { return $this->error('图片上传失败:' . $file->getError()); } } 正常请求结果如下{ "code": 1, "msg": "图片上传成功", "time": "1715419323", "data": { "0": "456", "url": "20240511/eeacd39a338200be41bc38b2d3c51ea3.png" } }
05-11 - 为什么jscode2session 接口返回的信息解密后除了openid所有的用户名都是:微信用户?
为什么jscode2session 接口返回的信息解密后除了openid所有的nickName都是:微信用户?avatarUrl也全部一样 "openid": , "nickname": "微信用户", "city": "", "gender": 0, "avatarUrl": "https:\/\/thirdwx.qlogo.cn\/mmopen\/vi_32\/POgEwh4mIHO4nibH0KlMECNjjGxQUq24ZEaGT4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg\/132" "https:\/\/thirdwx.qlogo.cn\/mmopen\/vi_32\/POgEwh4mIHO4nibH0KlMECNjjGxQUq24ZEaGT4poC6icRiccVGKSyXwibcPq4BWmiaIGuG1icwxaQX6grC9VemZoJ8rg\/132"
05-11 - 小程序本地测试真机测试正常上线后无法登录?
上线以前做了很多次测试,登陆从来没有出过问题,一上线登陆就不能用了,服务器后台显示都是200的状态码,谁知道怎么调试问题出在哪里了?
05-10