one version

This commit is contained in:
2025-12-01 12:13:03 +08:00
parent 0520603957
commit 80b00d9e5d
37 changed files with 790 additions and 205 deletions

View File

@@ -11,6 +11,9 @@ function GET_TOKEN(url, data, token) {
function POST(url, data) {
return SIMPLE(url, data, "POST");
}
function PUT(url, data) {
return SIMPLE(url, data, "PUT");
}
let requestTime = 0;
async function SIMPLE(url, data, method) {
if (requestTime == 0) {
@@ -73,4 +76,5 @@ function SIMPLE_TOKEN(url, data, token, method) {
exports.GET = GET;
exports.GET_TOKEN = GET_TOKEN;
exports.POST = POST;
exports.PUT = PUT;
//# sourceMappingURL=../../.sourcemap/mp-weixin/utils/request.js.map