收藏
回答

wx.request流式字符乱码问题

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug wx.request/enableChunked 工具 8.0.51 3.6.5

这里怎么转字符都会乱码 但是用postman请求就没一点儿问题

const requestTask = wx.request({
					url: 'https://ark.cn-beijing.volces.com/api/v3/bots/chat/completions',
					method: 'POST',
					enableChunked: true,
					responseType: "arraybuffer", // 以 ArrayBuffer 格式接收数据
					data: {
						"model": '',
						"messages": [{
							"role": "user",
							"content": "写一个文章"
						}],
						"stream": true,
					},
					header: {
						'content-type': 'application/json',
						'Authorization': 'Bearer xxx'
					},
					success: response => {},
					fail: error => {}

				});
requestTask.onChunkReceived((response) => {
					const arrayBuffer = response.data;
					const uint8Array = new Uint8Array(arrayBuffer);
					const str = new TextDecoder('utf-8').decode(uint8Array);
					console.log('str:',str)	
});

回答关注问题邀请回答
收藏

2 个回答

  • 啊?
    啊?
    2天前

    如果不用流式,打印出来是正常的。

    2天前
    有用
    回复
  • 余生
    余生
    星期五 18:05

    试试

    const str = new TextDecoder('utf-8', { fatal: true }).decode(uint8Array);

    星期五 18:05
    有用
    回复 1
    • 啊?
      啊?
      2天前
      不行,转出来还是乱码
      2天前
      回复
登录 后发表内容