qingyiay
2023-04-10 1b4f1c9db703b1bfd0e3f8cc7f01153a7399088d
api/index.js
@@ -11,6 +11,9 @@
   },
   jsonPOST: {
      "Content-type": 'application/json'
   },
   utfPOSt: {
      'content-type': 'application/x-www-form-urlencoded;charset=utf-8'
   }
}
@@ -45,6 +48,10 @@
      opt.header = typeObj['headerPOST'];
   } else if (urlType == 'json') {
      opt.header = typeObj['jsonPOST'];
      opt.data = params;
   } else if (urlType == 'utf8') {
      opt.header = typeObj['utfPOSt'];
      opt.data = params;
   } else {
      opt.data = params;
      opt.header = typeObj['headerPOST'];