fetch 流式请求

发布时间:2024年01月04日
async function getStream() {
  try {
    let response = await fetch('/chat/stream/你好?'); //  /chat/stream/后面跟问题
    if (!response.ok) {
      throw new Error('Network response was not ok');
    }
    const reader = response.body.getReader();
    const textDecoder = new TextDecoder();
    let isEnd = false;
    params.text = ''
    while (!isEnd) {
      const { done, value } = await reader.read();
      if (done) {
        isEnd = true
        break;
      }
      const chunkText = textDecoder.decode(value);
??????console.log(chunkText,'qing')
      params.text += chunkText;
    }
  } catch (e) {
    console.log(e);
  }
}
文章来源:https://blog.csdn.net/weixin_42046201/article/details/135149653
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。