vue-resource icon indicating copy to clipboard operation
vue-resource copied to clipboard

The HTTP client for Vue.js

Results 105 vue-resource issues
Sort by recently updated
recently updated
newest added

Using the recommended approach to abort a request, it doesn't work. `this.currentRequest` is always null even when there is another request in progress. The strange part is that Vue devtools...

I have config the proxyTable in the config/index.js created by vue-cli `proxyTable: { '/api': { target: 'http://ip:8080', changeOrigin: true, pathRewrite: { '^/api': '/api', }, `},` in my components ,when i...

Hello, vue-resource is awesome, nevertheless, I find myself lacking the ability to get request's returned promise from within interceptors. I'm trying not to fire a request when one of the...

### Reproduction Link ### Steps to reproduce ### What is Expected? ### What is actually happening?

Is there another way to reload the request after it has loaded successfully? We were using setTimeout to reload the code however the response data is fluctuating or is not...

![image](https://user-images.githubusercontent.com/21127114/30264763-81eee23e-970c-11e7-97c6-fab4489fefd7.png) Use vue-r to request resources, but the returned Chinese data is garbled

when set emulateJSON as ture , the query data(some chinese character) i POST to back end (Java Struts)always can't display right . how can i set request header content-type "application/x-www-form-urlencoded;charset=utf-8"...

### Reproduction Link https://nntin.github.io/pasteview/?paste=32z9wKpi ### Steps to reproduce This is my website ([source](https://github.com/NNTin/pasteview)). It takes a paste from Pastebin, e.g.: https://pastebin.com/32z9wKpi and displays it on the website. (Limitation: Paste has...

### Reproduction Link 1、第一种写法(the First method) …… let formData = new window.FormData() formData.append('roomId', roomId) formData.append('file', file) this.$http.post(url, formData, { headers: {'Content-Type': 'multipart/form-data'}, progress: function (e) { console.log(123456) console.log(e.loaded / e.total...

I'm using this kind of code : ``` this.$tickets.save(this.ticket).then(response => { //Success console.log(response) }, response => { //Error console.log('Error happenned') }) ``` And in my case, with a 422 status...