Others
Others
Currently, there is no standard protocol defining a "model interface specification," which can lead to compatibility issues between different protocols.
To address this, X provides tools to help developers resolve protocol compatibility issues.
XStream
parses ReadableStream
data using the SSE protocol by default.
import { XStream } from '@ant-design/x';async function request() {const response =await fetch();// ...// .....for await (const chunk of XStream({readableStream: response.body,})) {// Your protocolconsole.log(chunk);}}
XRequest
allows you to pass a custom fetch
function for request customization.
import { XRequest } from '@ant-design/x';const request = XRequest({fetch: yourFetchFn,});request.create();