vue resource php,VUE中使用Vue-resource完成交互

本文介绍了VUE中使用Vue-resource完成交互,分享给大家,具体如下

使用vue-resource

引入vue-resource

vue-resource就像jQuery里的$.ajax,是用来跟后端交互数据的,vue-resource是vue的一个插件,所以我们在开始使用vue之前,需要先引入vue-resource.js这个文件

基本语法

// 基于全局Vue对象使用http

Vue.http.get('/someUrl', [options]).then(successCallback, errorCallback);

Vue.http.post('/someUrl', [body], [options]).then(successCallback, errorCallback);

// 在一个Vue实例内使用$http

this.$http.get('/someUrl', [options]).then(successCallback, errorCallback);

this.$http.post('/someUrl', [body], [options]).then(successCallback, errorCallback);

在发送请求后,使用then方法来处理响应结果,then方法有两个参数,第一个参数是响应成功时的回调函数,第二个参数是响应失败时的回调函数。

options对象

688c2da17085bfe7c95622f4b3abd6a1.png

实例:

GET请求

在下面的实例中,我们做一个求和的功能,效果如下图:

c94dbb9c38c36c3314b2a2a22a9900a0.gif

get方法:

this.$http.get('/someUrl', [options]).then(function(response){

// 响应成功回调

}, function(response){

// 响应错误回调

});

在该实例中,我们准备了一个php文件,该文件主要接收前台通过get传过来的参数,并计算两个参数的和,代码如下:

$a=$_GET['a'];

$b=$_GET['b'];

echo $a+$b;

?>

html代码:

+

=

new Vue({

el:"#box",

data:{

a:"",

b:""

},

methods:{

add:function(){

this.$http.get("get.php",{

"a":this.a,

"b":this.b

}).then(function(response){

alert(response.data)

},function(response){

alert(response.status)

}

)

}

}

})

说明:response是后台返回的参数,它包括以下属性:

5d55e9e3ff97dd7e8c4694fc6a5b9b70.png

POST请求

$a=$_POST['a'];

$b=$_POST['b'];

echo $a+$b;

?>

new Vue({

el:"#box",

data:{

a:"",

b:""

},

methods:{

add:function(){

this.$http.post("post.php",{

"a":this.a,

"b":this.b

},{

emulateJSON:true //POST请求需要将emulateJSON设置为true

}).then(function(response){

alert(response.data)

},function(response){

alert(response.status)

}

)

}

}

})

JSONP

jsonp的语法跟get,post差不多,只是传递的数据不一样。接下来,我们用jsonp来完成一个百度搜索的功能。

1.首先准备一个实例的接口,这个接口是百度的搜索接口(我们可以自己找一些接口作为测试),如下:

https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd=a&cb=show

2.准备布局

  • 22222

暂无数据...

9a94eff9612d38f9cce78c2051efd161.png

3.功能描述

当我们在搜索框中输入搜索的内容的时候,下面的列表会显示出根据我们输入的内容联想的词语。按键盘的上下键,可以上下选择列表中的词语,按enter键的时候,会执行搜索

4.代码实现

首先我们准备一个myData数组,存放联想的词语。t1是input框输入的值,如下

data:{

myData:[],

t1:""

}

在搜索框中的输入内容的时候,执行一个方法,这个方法主要用于发送一个请求,获取输入内容的联想词语。

methods:{

search:function(ev){this.$http.jsonp("https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su",{

"wd":this.t1

},{

jsonp:"cb" //callback名字,默认是callback

}).then(function(response){

this.myData=response.data.s

},function(response){

alert(response.status)

}

)

}

}

执行到这一步,列表中已经可以显示出我们搜索的联想词语了,如下图:

1f6f3eaf04b0f6100e4805a6daea7c5d.png

下面的我们可以实现,按上下键的时候,选择词语

  • {{value}}

暂无数据...

/*data数据*/

data:{

myData:[],

t1:"",

now:-1

}

/*上下键的方法*/

changeDown:function(){

this.now++;

if(this.now==this.myData.length){

this.now=-1;

}

this.t1=this.myData[this.now];

},

changeup:function(){

this.now--;

if(this.now==-2){

this.now=this.myData.length-1;

}

this.t1=this.myData[this.now];

}

完整代码:

初识vue

.gray{

background-color: gray;

}

  • {{value}}

暂无数据...

//

new Vue({

el:"#box",

data:{

myData:[],

t1:"",

now:-1

},

methods:{

search:function(ev){

if(ev.keyCode==38 || ev.keyCode==40)return;

if(ev.keyCode==13){

window.open('https://www.baidu.com/s?wd='+this.t1);

this.t1='';

}

this.$http.jsonp("https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su",{

"wd":this.t1

},{

jsonp:"cb" //callback名字,默认是callback

}).then(function(response){

this.myData=response.data.s

},function(response){

alert(response.status)

}

)

},

changeDown:function(){

this.now++;

if(this.now==this.myData.length){

this.now=-1;

}

this.t1=this.myData[this.now];

},

changeup:function(){

this.now--;

if(this.now==-2){

this.now=this.myData.length-1;

}

this.t1=this.myData[this.now];

}

}

})

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值