现在我们来看一下vue中的数据监听事件$watch,
js代码:
rush:js;">
new Vue({
el:"#div",data:{
arr:[1,2,3]
}
}).$watch("arr",function () {
alert("数据改变了")
})
rush:js;">
{{arr}}
这就是数组的监听,对于json我们也是一样的,但是我们得给他一个深度监听,$watch的第三个参数{deep:true}。
angular 中的数据交互有$http,同样对于vue我们也是有数据交互的,有post,get以及jsonp的方法。
css代码:
rush:js;">
a{
text-decoration: none;
color: black;
}
#div{
text-align: center;
padding-top: 50px;
}
input{
height: 25px;
width: 500px;
border-radius: 5px;
outline: none;
}
ul{
margin-left:470px;
margin-top: 0;
}
li{
height: 25px;
text-align: left;
border:1px solid gray;
list-style: none;
width: 500px;
}
js代码:
rush:js;">
new Vue({
el:"#div",data:{
msg:" ",arr:[]
},methods:{
get:function () {
this.$http.jsonp('https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su?',{
wd:this.msg
},{
jsonp: 'cb'
}).then(function(res){
this.arr=res.data.s
},function(s){
console.log(s);
});
}
}
})
rush:js;">
{{item}}
这样一个简单的小案例就做好了。
以上所述是小编给大家介绍的Vue中的数据监听和数据交互案例解析。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。