diff --git a/src/common/server/http.ts b/src/common/server/http.ts index 354d707e..b9841601 100644 --- a/src/common/server/http.ts +++ b/src/common/server/http.ts @@ -94,6 +94,8 @@ export abstract class HttpServerBase { let payload = req.body; if (method == 'get') { payload = req.query; + } else if (req.query) { + payload = { ...req.query, ...req.body }; } log('收到http请求', url, payload); try {