i read code, vue-resource use XDomainRequest when brower is ie9, but ie9 cant get any data in response, so, i change code var supportCors = 'withCredentials' in new XMLHttpRequest(); to var supportCors = true;, then it work!!!
+1
I also have this problem ! +1
i found that in IE9 when you send a cross domain request , i can't get data in the success callback
but it is in the error callback . that's very strange!
do you mean you change the source vue-resource source code?
我也遇到同样的问题,在IE9上请问怎么解决?
@hellove2017 别用这个库了,建议使用axios
Most helpful comment
I also have this problem ! +1
i found that in IE9 when you send a cross domain request , i can't get data in the success callback
but it is in the error callback . that's very strange!