- 
								Cannot find the request address after the Vue project is packaged?
								
   config index.js 
proxyTable: {
       proxy all requests starting with  api to jsonplaceholder
       api  : {
        target:   https:  xxxxxxx.com   ,
        changeOrigin: true,  
        changeOrigin: true,
        pathRewrite: {
              ^ a... 
- 
								Vue-resource sends a request to the server, but the server cannot receive the parameters.
								
this.$http.post(  http:  192.168.1.37 app getPhoneRightCode.action  , {
    params: {
          session  : sessionStorage,
          phone  : phone_num,
          type  : 1
    }
}).then(response => {
    console.log(response);
})
 the method is calle... 
- 
								How to get the background data through vue-router?
								
 Vue rookie, is trying to do a SPA page, encountered a problem looked at a lot of information can not be solved, come here to ask for the opinions of your predecessors. 
 can vue-router get background data directly? How should it be done? If not, whether... 
- 
								Vue-resource returns how xml, handles
								
 this is my request, using vue-resource: 
Vue.http.post(    , params, { emulateJSON: true })
 gets the returned value, which is returned by undefined,. 
 
 
 how can I get the value of Key in xml? 
... 
- 
								Vue promise
								
 data request uses axios 
 method of requesting data 
 
 
 print out, first execute the new acquisition data, and then perform the re-acquisition data, so that the data is still the same as before. Is there any way to add the acquisition data after the ... 
- 
								How can the browser see the token value with each ajax request sent?
								
 Open a page in vue and then the console will see two requests 
 (the backend said no token was received) 
 
 
... 
- 
								Does the vue-resource interceptor set a new request header Authorization after the access_token expires?
								
 the project uses oauth authentication to determine whether the access_token has expired on each request in the interceptor. If it has expired, reacquire the access_token, and modify the Authorization, of the request header of the current request to the ... 
- 
								How to reduce the format check level? of npm run dev It's too strict now.
								 can be build on windows,  but not on linux.  reports all format errors, such as missing spaces .... 
- 
								The Chinese in the params of the vue-resource get request will be compiled
								
this.$http.get(    , {
  params: {
    message:     
  },
  headers: {
  }
 Request URL:xxx?message=%E5%A4%9A%E6%92%92%E5%A5%A5  in network of  chrome
 the desired result is  Request URL:xxx?message= Chinese garbled 
... 
- 
								Vue-resource cross-domain issues?
								
 now develop a project using vue. And use the vue-resource plug-in to access rest. 
this.$http.jsonp("http:  dh1470:8080 getssList",
                {params:{start:0,size:100},emulateJSON:true})..then(resp=>{
                console.log(resp... 
- 
								Vue multilevel dynamic routing
								   there is an initial data interface from 1 to 4, and the subsequent navigation data is obtained from the database; and the first-level routes are directed to the first by default; when I click 1, the route to 4 is displayed. Ask for a simple demo or som... 
- 
								How to block pre-requests made by browsers for non-simple requests?
								
< H1 > when the browser makes a non-simple request to the server, there will be an options pre-request. Can this be shielded? <   H1 >
 now every time I enter the application, I verify the token and get a new token,. However, due to the pre-request probl... 
- 
								Hurry! Vue-resource could not submit post data path 404
								
 I watched a video on the Internet, using the previous version of vue2.0, so the get and post configured with vue-resource are in the dev-server.js under build.js, while I am using the new version after vue2.0, so there are no dev-server.js files in the ... 
- 
								Visit the web page and load a lot of useless data:application/js:base64 requests
								
   page developed by vue  webpack packaged vue program.  these requests seriously affect the rendering speed of the page 
 expected structure:  remove these useless application requests. 
... 
- 
								There's something wrong with npm install vue-resource.
								
 such a problem occurs when executing npm install vue-resource-- save 
 D:myProjecttranslate > npm install vue-resource-- save  npm err! Code ENOTFOUND  npm err! Errno ENOTFOUND  npm err! Network request to  https:  registry.npmjs.org vu. failed, reas  o... 
- 
								How is vue-resource abstractly used in interfaces?
								
< H2 > Thank You For Your time! <   H2 >
 I want to modularize all the interfaces 
 index-page.vue 
import {
    getCarList
} from   api car.js  ;
created: function () {
    getCarList();
},
 car.js 
export function getCarList() {
    let url = domain ... 
- 
								How to solve the Cross-domain problem with vue-resourc
								
 vue gets the interface on  https:  y.qq.com m index.html QQ Music  https:  c.y.qq.com musichall ...   methods: {
},:  how to solve this problem? I use jsonp, not to package this cross-domain problem, but I can  t get the data .
... 
- 
								Vue2.0 acquires the data of all the songs on QQ Music's web
								
 I configured prxyTable:  const proxyTable = {    musichall  : { in webpack.dev.conf.js and index.js with vue-resorce
target:   https:  c.y.qq.com  ,
changeOrigin: true,
pathRewrite: {}
},     splcloud  : {
target:   https:  c.y.qq.com  ,
changeOrigin: t... 
- 
								How to set callback by vue-resource timeout
								
 my project introduces vue2.min.js and vue-resource.min.js files. How can I set the callback function? 
      this.$http.post(url, {
        keywords : [
          {   key   : key,   limit   : 50 }
        ]
      },{timeout : 3000}).then(function(res) {... 
- 
								When vue-resource $http.get requests, the value of res is undefined and catch can get the request value?
								
 there are js cart.js, cart.html and cartdata.json, files on the same layer in the root directory. Use  in cart.js.
this.$http.get("cartData.json").then(function (res) {
     this.productList = res.body.result.list;
}).catch(function (res) {
  ...