我正在创建一个个人简历网站,并立即使用heroku托管它。我正在使用Jquery,我的问题是,当我在本地开发我的window.ready函数(它设置了一些CSS)时,它非常平滑,但是当我部署它时,它会变得非常毛刺且缓慢。香港专业教育学院试图添加转换:translateZ(0);为了增强它,而我尝试缩小我的JavaScript。如果有人知道是什么使它如此缓慢,请在下面的代码中获得帮助。谢谢。
let axiosRequest = async (options) => {
try {
await axios(options) // try to call
} catch (err) {
if (err.status === 401) { // token is expired
let accessToken = await getNewAccessToken(refreshToken) // call the refresh token endpoint to get a new access token
options.headers = {Authorization : `Bearer ${accessToken}`} // set the new access token to initial petition
return await axiosRequest(options) // call again with new token
}
throw err
}
}
在此链接到页面 http://kaiferrall.herokuapp.com/