摘要:
// 平滑的滚动到底部 const scrollToBottom = (element) => element.scrollIntoView({ behavior: "smooth", block: "end" }); // 平滑的滚动到顶部 const scrollToTop = (element 阅读全文
摘要:
在开发过程中,Promise常用的方法有:all ,any,race ,allSettled。 1. Promise.all all,它接受的参数是个数组,它只有等所有请求都结束才会有结果,都成功才会执行.then,then返回的也是一个数组,它与参数中的promise数组是一一对应的;如果返回中有 阅读全文