1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/luanyutop-circle

Клонировать/Скачать
uni.promisify.adaptor.js 309
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
luanyutop Отправлено 20.11.2023 10:33 e5a82cd
uni.addInterceptor({
returnValue (res) {
if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) {
return res;
}
return new Promise((resolve, reject) => {
res.then((res) => res[0] ? reject(res[0]) : resolve(res[1]));
});
},
});

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/luanyutop-circle.git
git@api.gitlife.ru:oschina-mirror/luanyutop-circle.git
oschina-mirror
luanyutop-circle
luanyutop-circle
quanzi