checkRes.js 176 B

12345678
  1. // 请求是否正确
  2. module.exports = (res) => {
  3. const { errcode = 0, errmsg } = res || {};
  4. if (errcode === 0) {
  5. return true;
  6. }
  7. return false;
  8. }