- 小程序客服系统问题求助?
小程序客服网页版,客户信息有延迟问题,出现客户信息客服侧迟迟收不到导致信息堆积,引起客户反感。 当多个网页同时与不同客户进行沟通时,网页版没有新信息提醒。 多客服和客服交接提醒如何操作
2021-04-07 - 关于文件上传wx.uploadFile的用法?
for(var i=0;i<len;i++){ var $path=$files[i].path; wx.uploadFile({ url:app.globalData.api+"&r=util.uploader.upload&file=file", filePath:$path, name:"file",//规定的key值 header: { "Content-Type": "multipart/form-data" }, success:function(res){ console.log(JSON.parse(res.data)); console.log(JSON.parse(res.data).files[0].url) console.log(JSON.parse(res.data).files[0].filename) successNum++; console.log(successNum) arr.push({ url:JSON.parse(res.data).files[0].url, filename:JSON.parse(res.data).files[0].filename }); console.log(arr.length); console.log(arr) if(arr.length==successNum){ console.log(that.data.id) o.post("member/cart/addsd",{ id:that.data.id,//会员id files:arr,//文件列表 title:that.data.id.title,//原产品详情 gid:that.data.gid,//原产品id },function(res){ console.log(res); if(res==1){ wx.switchTab({ url:"/pages/member/cart/index" }); } }) /* wx.navigateTo({ url:"/pages/member/cart/index?id="+that.data.id }) */ }else{ console.log("没有上传完成") } } }) }; d我现在要上传多个文件,但是wx.uploadFile api只能上传一个文件,于是我便用了循环上传写法,但是实际操作中,比如上传两张图片,第一张图片会自动多上传一次 咋处理
2021-04-07 - 苹果手机正常安卓手机小程序返回APP直接被杀死?
open-type="launchApp"
2021-04-07 - 行驶路径moveAlong不顺滑,为什么会有较大锯齿?
const mapCtx = wx.createMapContext('map', this); mapCtx.moveAlong({ markerId: 1, path: this.data.polyline[0].points, //移动路径的坐标串 duration: 10000, //平滑移动的时间 autoRotate: true //车头按行驶方向自动旋转,默认true }); 用的是官方示例,只是改了path的值,但出来的结果会有莫名其妙的差异,如下图 [图片]实际上应该是按公路一条直线或弧线,为什么会出现锯齿状呢?
2021-04-01 - 小程序登陆的问题,在开发环境和真机调试都正常,但上传后,体验版为什么总是提示微信授权?
第一步: onShow() { let userInfo = wx.getStorageSync('userInfo'); console.log("111"); console.log(userInfo); if(userInfo == '') { wx.showToast({ title: "失败 失败 失败 失败 失败" }); console.log("222"); this.setData({ hasUserInfo: false, }); this.goAuth(); //调用第二步的getUserInfo } else { wx.showToast({ title: "授权成功" }); this.setData({ hasUserInfo: true, userInfo: userInfo }); } }, 第二步: getUserInfo: function (e) { app.globalData.userInfo = e.detail.userInfo user.loginByWeixin().then(res => { app.globalData.userInfo = res.data.userInfo; app.globalData.token = res.data.token; wx.navigateBack(); }).catch((err) => { wx.showToast({ title: "失败: " + err.message }); }); }, 第三步核心代码 user.loginByWeixin: return util.request(api.AuthLoginByWeixin, { code: code, userInfo: userInfo.userInfo }, 'POST').then(res => { if (res.statusCode == 200) { //存储用户信息 wx.setStorageSync('userInfo', res.data.userInfo); wx.setStorageSync('token', res.data.token); resolve(res); } else { reject(res); } }) 请大神帮看看什么问题,本机测试和本机真机测试都没问题,就是上传后老是在微信授权那循环。
2021-03-27 - 哪里下载官方的示例小程序源码?
这是官网有关Map的小程序示例,请问如何把这个小程序的源码下载下来? [图片]
2021-03-27