- 小程序 openCustomerServiceChat 唤起客服后点击返回按钮无效 ?
问题设备: ipad mini4(其他设备正常) 问题描述:在小程序中使用openCustomerServiceChat 跳转微信客服后,在客服聊天页点击左上角箭头无响应,无法返回小程序 代码如下: <View className="customer" onClick={() => { Taro.openCustomerServiceChat({ extInfo: { url: "xxxxx", }, corpId: "xxx", fail: (err) => { console.log("openCustomerServiceChat", err); }, }); }} > <Image className="customer-icon" src={Customer} /> <View className="customer-text" onClick={handleContact}> 联系客服 </View> </View>
2023-09-21 - getUserProfile:fail api scope is not declared ...?
有部分手机提示调用getUserProfile时会报错,而我的手机不出错,求解 [图片] handleSubmit()}>微信一键登录 const handleSubmit=()=>{ console.log('进入~~~~~~'); if(pending){ return; } setPending(true); Taro.getUserProfile({ desc: '获取用户信息', success: async res => { // dosomethings }, fail:(e)=>{ console.log(e); // getUserProfile:fail api scope is not declared in the privacy agreement setPending(false); }, }); };
2023-08-15 - 开发者工具真机调试出错 "expected not same" String,怎么解决?
场景:小程序中测试机出现预计之外的卡顿,所以使用该手机进行真机测试,真机测试连接后报错, 控制台无法其它信息 ps: 该手机机型比较旧,在其它机型上都未表现这个这个问题 开发者工具报错信息: [图片] [图片] 手机系统信息: [图片] 问题: 怎么解决上述问题?
2022-05-06 - JS-SDK wx.config 没走服务器 出现 40093错误?
微信小程序 JSSDK wx.config 出现 40093错误, 这个签名没有走服务器,是前端写死的(测试用的) 签名的结果 是直接用 微信 JS 接口签名校验工具 生成的, 地址在这: http://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=jsapisign 已经按照附录5检查了,非要走服务器吗?
2020-12-30