有没有老哥解答下
关于ai回复时输出内容过长时,使用setdata输出时,会导致小程序卡顿,有好的解决方法吗?requestTask.onChunkReceived(function (response) { const arrayBuffer: any = response.data; let responseText = ''; const uint8Array: any = new Uint8Array(arrayBuffer); let text = String.fromCharCode.apply(null, uint8Array); responseText += text; const lastIndex = responseText.lastIndexOf('\n', responseText.length - 2) let chunk = responseText let chunkArr = [] if (lastIndex !== -1) { let linesArray: any = responseText.split('\n'); chunkArr = linesArray.filter((item: any) => item !== ''); } else { chunkArr.push(chunk) } try { let stopStatus = _this.data.stopStatus if (stopStatus) { _this.setrestart() requestTask.abort(); // 终止请求 }else{ let replysources: any = _this.data.replysources let index = replysources.length - 1; replysources[index].text = replysources[index].text + text //markdown '#1E1E1E' replysources[index].textmarkdown = app.towxml(replysources[index].text, 'markdown', { theme:'dark' }) _this.setData({ replysources: replysources, process_status: true, //表示进程正在继续 }) } } catch (error) { // console.log("error1:", error) } }) 上述是接收返回数据,并通过setdata进行输出,但是返回的内容过长,点击停止输出时,不能响应。返回的内容少,点击停止时能快速响应的,请问下老铁们有好的解决方法吗?
2024-12-05cookie属性samesite=none设置都不行,同求解决方案
IOS14、微信7.0.18 H5页面cookie跨域问题?在IOS14跟7.0.18版本的微信上面请求无法携带跨域cookie,这个要怎么解决?设置cookie属性samesite=none吗?
2020-11-09我也想知道
公众号开发图文消息体插入本地视频微信公众号开发图文消息体插入本地视频,微信后台会直接屏蔽掉,有没有其他方法能够把视频发出去,或者说先把视频上传为素材得到media_id,如何 利用这个media_id组装成微信后台认可的src?
2020-03-18