admin管理员组文章数量:1341428
Not sure what I am missing. Following the instructions here: .md
I have npm installed both axios and npm install axios promise.prototype.finally --save
.
I am using Gulp with Browserify.
var axios = require('axios');
require('promise.prototype.finally');
axios.get('').finally(function(){
console.log('test');
});
Error:
app-7ee90adab7.js:18780 Uncaught TypeError: axios.get(...).finally is not a function
Update: This makes it work but do I need to do this?
var promiseFinally = require('promise.prototype.finally');
promiseFinally.shim();
Not sure what I am missing. Following the instructions here: https://github./mzabriskie/axios/blob/master/COOKBOOK.md
I have npm installed both axios and npm install axios promise.prototype.finally --save
.
I am using Gulp with Browserify.
var axios = require('axios');
require('promise.prototype.finally');
axios.get('http://google.').finally(function(){
console.log('test');
});
Error:
app-7ee90adab7.js:18780 Uncaught TypeError: axios.get(...).finally is not a function
Update: This makes it work but do I need to do this?
var promiseFinally = require('promise.prototype.finally');
promiseFinally.shim();
Share
Improve this question
asked Sep 26, 2016 at 6:28
JC LeeJC Lee
2,3973 gold badges18 silver badges26 bronze badges
1
-
Does axios use native promises or its own implementation? Try
Promise.resolve(axios.get(…)).finally(…)
– Bergi Commented Sep 26, 2016 at 9:45
2 Answers
Reset to default 4FYI https://github./axios/axios/issues/34#issuement-558869934
Axios supports .finally()
.
Try one of these see if it works:
See if you have a global Promise available to shim it? Enter
Promise
in chrome console while the browserify is running the bundle. If you don't have it, use Babel or a lib that makes es6 or just Promise available.If it didn't work for some reason... well axios cookbook.md didn't get it right, since you have to call shim() to apply it on promise proto. why don't you use a shorthand
require('promise.prototype.finally').shim();
if you don't like it that way, otherwise you have torequire('es6-shim');
本文标签: javascriptAxios with promiseprototypefinally doesn39t workStack Overflow
版权声明:本文标题:javascript - Axios with promise.prototype.finally doesn't work - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743669898a2519357.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论