最近项目框架换成了vue,HTTP请求库使用axios,Promise对象有一个finally方法,但是在低版本浏览器不支持,所以需要引入对应的polyfill

先安装promise.prototype.finally包

npm i promise.prototype.finally

再引入该依赖包:

main.js

...
require('promise.prototype.finally').shim();
new Vue({
    ...
})

参考:https://stackoverflow.com/questions/39696007/axios-with-promise-prototype-finally-doesnt-work

Logo

前往低代码交流专区

更多推荐