在欣赏器端,axios 是利用 XMLHttpRequest 对象来实现请求,设置 responseType: 'stream' 后会出现以下告诫⚠️:
The provided value 'stream' is not a valid enum value of type XMLHttpRequestResponseType.
以是,在欣赏器端,我们需要利用欣赏器内置API fetch 来实现 stream 流式请求。
代码演示:
async function getStream() {
try {
let response = await fetch('/api/admin/common/testStream');