1. 程式人生 > >vue開發:vue的get與post請求

vue開發:vue的get與post請求

一,get請求

self.$http.get(self.COMMON_URL.URL_199+'/runSystem/getRunSystemByProductId',{

params:{productId:productId}

}).then();

二,post請求

let qs=require('qs');
let params={
   'taskId':self.taskId
};
self.$http.post(self.COMMON_URL.baseApi+'8011/buildController/doVersionBuild',qs.stringify(params)).then()