Skip to content

Commit 6f9f353

Browse files
authored
fix: should not throw when fetch a Request with post (#563)
## 现象 使用 post method fetch 一个 Request 对象时会出现 `Cannot construct a Request with a Request object that has already been used.` 错误。 ## 原因 Request 的 constructor 会把入参的 request.body.stream.locked 变为 true,urllib 的 fetch 中已经使用参数 input new 了一个 Request,再调用 undici fetch 时参数还是 input,就会报错。 <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Updated the fetch method to utilize a `Request` object for improved request handling. - Added a new test case to verify POST request functionality using the `Request` class. - **Chores** - Updated `.gitignore` to exclude the `.idea/` directory. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent bf2b5b1 commit 6f9f353

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ test/fixtures/ts-cjs-es2021/*.js
1616
test/fixtures/ts-esm/*.js
1717
.eslintcache
1818
.tshy*
19+
.idea/

src/fetch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export class FetchFactory {
218218
} as any as RawResponseWithMeta;
219219
try {
220220
await FetchFactory.#opaqueLocalStorage.run(internalOpaque, async () => {
221-
res = await UndiciFetch(input, init);
221+
res = await UndiciFetch(request);
222222
});
223223
} catch (e: any) {
224224
updateSocketInfo(socketInfo, internalOpaque, e);

test/fetch.test.ts

+11
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
fetch, FetchDiagnosticsMessage, FetchFactory, FetchResponseDiagnosticsMessage,
88
} from '../src/fetch.js';
99
import { RequestDiagnosticsMessage, ResponseDiagnosticsMessage } from '../src/HttpClient.js';
10+
import { Request } from 'undici';
1011

1112
describe('fetch.test.ts', () => {
1213
let close: any;
@@ -109,4 +110,14 @@ describe('fetch.test.ts', () => {
109110
assert(stats);
110111
assert(Object.keys(stats).length > 0);
111112
});
113+
114+
it('fetch request with post should work', async () => {
115+
await assert.doesNotReject(async () => {
116+
const request = new Request(_url, {
117+
method: 'POST',
118+
body: 'test-body',
119+
});
120+
await fetch(request);
121+
}, /Cannot construct a Request with a Request object that has already been used/);
122+
});
112123
});

0 commit comments

Comments
 (0)