現在我們來看vue中的資料監聽事件$watch,
js程式碼:
new Vue({ el:"#div", data:{ arr:[1,2,3] } }).$watch("arr",function () { alert("数据改变了") })
html程式碼:
<div id="div"> <input type="button" value="改变" @click="arr.push(5)"> <h1>{{arr}}</h1> </div>
這就是數組的監聽,對於json我們也是一樣的,但是我們得給他一個深度監聽,$watch的第三個參數{deep:true}。
angular 中的資料互動有$http,同樣對於vue我們也是有資料互動的,有post,get以及jsonp的方法。
我們在這裡做一個簡單的百度搜尋功能
css程式碼:
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程式碼:
new Vue({ el:"#div", data:{ msg:" ", arr:[] }, methods:{get:function () {this.$http.jsonp('',{ wd:this.msg },{ jsonp: 'cb'}).then(function(res){this.arr=res.data.s },function(s){ console.log(s); }); } } })
html程式碼:
<div id="div"> <input type="text" v-model="msg" @keyup="get()"> <ul> <li v-for="item in arr"><a href="javascript:;">{{item}}</a></li> </ul> </div>
這樣簡單的小案例就做好了。
以上是vue中有關資料監聽與資料互動的小例子的詳細內容。更多資訊請關注PHP中文網其他相關文章!