ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## Body ```typescript export declare abstract class Body { /** * Attempts to return body as parsed `JSON` object, or raises an exception. */ json(): any; /** * Returns the body as a string, presuming `toString()` can be called on the response body. */ text(): string; /** * Return the body as an ArrayBuffer */ arrayBuffer(): ArrayBuffer; /** * Returns the request's body as a Blob, assuming that body exists. */ blob(): Blob; } ```