vue 通过 vue-resource 调用 后台接口
Posted gfbppy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 通过 vue-resource 调用 后台接口相关的知识,希望对你有一定的参考价值。
import Vue from ‘vue‘
import VueResource from ‘vue-resource‘
Vue.use(VueResource);
function HTTP()
this.Vue=Vue;
//域名
this.baseurl=function(num)
var strurl="";
switch(num)
case 1:strurl="http://localhost:37377";break;
case 2:strurl="http://localhost:37377";break;
default:strurl="http://localhost:37377";break;
return strurl;
,
//get 提交
this.Get=function(url,param,type)
return this.Vue.http.get(this.baseurl(type)+url,params:param);
,
//post 提交
this.Post=function(url,param,type)
return this.Vue.http.post(this.baseurl(type)+url,param,emulateJSON:true);
var http=new HTTP();
export default http;
以上是关于vue 通过 vue-resource 调用 后台接口的主要内容,如果未能解决你的问题,请参考以下文章
Vue.js:vue-resource 使用路径参数调用 resource.save()
Vue-Resource 在 Ajax POST 调用中给出 TokenMismatchException
简单了解如何使用vue-router和vue-resource