Axios mit promise.prototype.finally funktioniert nicht
Nicht sicher, was mir fehlt. Befolgen Sie die Anweisungen hier:https: //github.com/mzabriskie/axios/blob/master/COOKBOOK.m
Ich habe npm sowohl Axios als auch @ installienpm install axios promise.prototype.finally --save
.
Ich verwende Gulp mit Browserify.
var axios = require('axios');
require('promise.prototype.finally');
axios.get('http://google.com').finally(function(){
console.log('test');
});
Error
app-7ee90adab7.js:18780 Uncaught TypeError: axios.get(...).finally is not a function
Update: Damit funktioniert es, aber muss ich das tun?
var promiseFinally = require('promise.prototype.finally');
promiseFinally.shim();