Gennadysht 1 年之前
父节点
当前提交
da660d1cf9
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      src/utills/utils.js

+ 4 - 1
src/utills/utils.js

@@ -18,7 +18,10 @@ function saveImage(image) {
         method: "POST",
         headers: token ? { Authorization: 'Bearer ' + token } : {},
         body: formData
-    }).then(res => res.json());
+    }).then(res => {
+        let a = '';
+        return res.json();
+    });
     return res;
 }