From b48d506996787f8ecd00b3dfded4df10b41ddd88 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 31 Mar 2022 21:55:16 +0800 Subject: [PATCH] 1 --- http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.js b/http.js index 16f6305..6d9ca30 100644 --- a/http.js +++ b/http.js @@ -14,7 +14,7 @@ function get(url, params) { params: params, responseType: 'text' }).then((response) => { - ret.data = response; + ret.data = response.data; resolve(ret); }).catch((error) => { ret.err = error;