平安校园
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

uni.promisify.adaptor.js 309 B

před 1 měsícem
12345678910
  1. uni.addInterceptor({
  2. returnValue (res) {
  3. if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) {
  4. return res;
  5. }
  6. return new Promise((resolve, reject) => {
  7. res.then((res) => res[0] ? reject(res[0]) : resolve(res[1]));
  8. });
  9. },
  10. });