寫了vue項目和小程序,發現兩者有許多相同之處,在此想總結一下兩者的共同點和區別。vue
先貼兩張圖:json
相比之下,小程序
的鉤子函數要簡單得多。小程序
vue
的鉤子函數在跳轉新頁面時,鉤子函數都會觸發,可是小程序
的鉤子函數,頁面不一樣的跳轉方式,觸發的鉤子並不同。app
onLoad
: 頁面加載onLoad
中獲取打開當前頁面所調用的 query
參數。onShow
: 頁面顯示onReady
: 頁面初次渲染完成wx.setNavigationBarTitle
請在onReady
以後設置。詳見生命週期onHide
: 頁面隱藏navigateTo
或底部tab切換時調用。onUnload
: 頁面卸載redirectTo
或navigateBack
的時候調用。在頁面加載請求數據時,二者鉤子的使用有些相似,vue
通常會在created
或者mounted
中請求數據,而在小程序
,會在onLoad
或者onShow
中請求數據。ide
VUE
:vue動態綁定一個變量的值爲元素的某個屬性的時候,會在變量前面加上冒號:,例:函數
<img :src="imgSrc"/>
小程序
:綁定某個變量的值爲元素屬性時,會用兩個大括號括起來,若是不加括號,爲被認爲是字符串。例:this
<image src="{{imgSrc}}"></image>
直接貼代碼,二者仍是有些類似
vue:spa
<ul id="example-1"> <li v-for="item in items"> {{ item.message }} </li> </ul> var example1 = new Vue({ el: '#example-1', data: { items: [ { message: 'Foo' }, { message: 'Bar' } ] } })
小程序:3d
Page({ data: { items: [ { message: 'Foo' }, { message: 'Bar' } ] } }) <text wx:for="{{items}}">{{item}}</text>
vue
中,使用v-if
和v-show
控制元素的顯示和隱藏雙向綁定
小程序
中,使用wx-if
和hidden
控制元素的顯示和隱藏
vue
:使用v-on:event
綁定事件,或者使用@event
綁定事件,例如:
<button v-on:click="counter += 1">Add 1</button> <button v-on:click.stop="counter+=1">Add1</button> //阻止事件冒泡
小程序
中,全用bindtap(bind+event)
,或者catchtap(catch+event)
綁定事件,例如:
<button bindtap="noWork">明天不上班</button> <button catchtap="noWork">明天不上班</button> //阻止事件冒泡
在vue
中,只須要再表單
元素上加上v-model
,而後再綁定data
中對應的一個值,當表單元素內容發生變化時,data
中對應的值也會相應改變,這是vue
很是nice的一點。
<div id="app"> <input v-model="reason" placeholder="填寫理由" class='reason'/> </div> new Vue({ el: '#app', data: { reason:'' } })
可是在小程序
中,卻沒有這個功能。那怎麼辦呢?
當表單內容發生變化時,會觸發表單元素上綁定的方法,而後在該方法中,經過this.setData({key:value})
來將表單上的值賦值給data
中的對應值。
下面是代碼,能夠感覺一下:
<input bindinput="bindReason" placeholder="填寫理由" class='reason' value='{{reason}}' name="reason" /> Page({ data:{ reason:'' }, bindReason(e) { this.setData({ reason: e.detail.value }) } })
當頁面表單元素不少的時候,更改值就是一件體力活了。和小程序
一比較,vue
的v-model
簡直爽的不要不要的。
vue
中,經過this.reason
取值
小程序
中,經過this.data.reason
取值
在vue
中,綁定事件傳參挺簡單,只須要在觸發事件的方法中,把須要傳遞的數據做爲形參傳入就能夠了,例如:
<button @click="say('明天不上班')"></button> new Vue({ el: '#app', methods:{ say(arg){ consloe.log(arg) } } })
在小程序
中,不能直接在綁定事件的方法中傳入參數,須要將參數做爲屬性值,綁定到元素上的data-
屬性上,而後在方法中,經過e.currentTarget.dataset.*
的方式獲取,從而完成參數的傳遞,很麻煩有沒有...
<view class='tr' bindtap='toApprove' data-id="{{item.id}}"></view> Page({ data:{ reason:'' }, toApprove(e) { let id = e.currentTarget.dataset.id; } })
在vue
中,須要:
import
引入vue
的components
中註冊//子組件 bar.vue <template> <div class="search-box"> <div @click="say" :title="title" class="icon-dismiss"></div> </div> </template> <script> export default{ props:{ title:{ type:String, default:'' } } }, methods:{ say(){ console.log('明天不上班'); this.$emit('helloWorld') } } </script> // 父組件 foo.vue <template> <div class="container"> <bar :title="title" @helloWorld="helloWorld"></bar> </div> </template> <script> import Bar from './bar.vue' export default{ data(){ return{ title:"我是標題" } }, methods:{ helloWorld(){ console.log('我接收到子組件傳遞的事件了') } }, components:{ Bar } </script>
在小程序
中,須要:
在子組件的json
文件中,將該文件聲明爲組件
{ "component": true }
在須要引入的父組件的json
文件中,在usingComponents
填寫引入組件的組件名以及路徑
"usingComponents": { "tab-bar": "../../components/tabBar/tabBar" }
在父組件中,直接引入便可
<tab-bar currentpage="index"></tab-bar>
具體代碼:
// 子組件 <!--components/tabBar/tabBar.wxml--> <view class='tabbar-wrapper'> <view class='left-bar {{currentpage==="index"?"active":""}}' bindtap='jumpToIndex'> <text class='iconfont icon-shouye'></text> <view>首頁</view> </view> <view class='right-bar {{currentpage==="setting"?"active":""}}' bindtap='jumpToSetting'> <text class='iconfont icon-shezhi'></text> <view>設置</view> </view> </view>
vue
中父組件向子組件傳遞數據,只須要在子組件經過v-bind
傳入一個值,在子組件中,經過props
接收,便可完成數據的傳遞,示例:
// 父組件 foo.vue <template> <div class="container"> <bar :title="title"></bar> </div> </template> <script> import Bar from './bar.vue' export default{ data(){ return{ title:"我是標題" } }, components:{ Bar } </script> // 子組件bar.vue <template> <div class="search-box"> <div :title="title" ></div> </div> </template> <script> export default{ props:{ title:{ type:String, default:'' } } } </script>
子組件和父組件通訊能夠經過this.$emit
將方法和數據傳遞給父組件。
小程序
中父組件向子組件通訊和vue
相似,可是小程序
沒有經過v-bind
,而是直接將值賦值給一個變量,以下:
<tab-bar currentpage="index"></tab-bar> 此處, 「index」就是要向子組件傳遞的值
在子組件properties
中,接收傳遞的值
properties: { // 彈窗標題 currentpage: { // 屬性名 type: String, // 類型(必填),目前接受的類型包括:String, Number, Boolean, Object, Array, null(表示任意類型) value: 'index' // 屬性初始值(可選),若是未指定則會根據類型選擇一個 } }
子組件向父組件通訊和vue
也很相似,代碼以下:
//子組件中 methods: { // 傳遞給父組件 cancelBut: function (e) { var that = this; var myEventDetail = { pickerShow: false, type: 'cancel' } // detail對象,提供給事件監聽函數 this.triggerEvent('myevent', myEventDetail) //myevent自定義名稱事件,父組件中使用 }, } //父組件中 <bar bind:myevent="toggleToast"></bar> // 獲取子組件信息 toggleToast(e){ console.log(e.detail) }
vue
會給子組件添加一個ref
屬性,經過this.$refs.ref的值
即可以獲取到該子組件,而後即可以調用子組件中的任意方法,例如:
//子組件 <bar ref="bar"></bar> //父組件 this.$ref.bar.子組件的方法
小程序
是給子組件添加id
或者class
,而後經過this.selectComponent
找到子組件,而後再調用子組件的方法,示例:
//子組件 <bar id="bar"></bar> // 父組件 this.selectComponent('#id').syaHello()
1.父組件將style傳入子組件
2.父組件傳入變量控制子組件樣式
3.在父組件樣式中,在子組件類名前面加上父組件類名
<view class='share-button-container' bindtap='handleShareBtn'> <share-button product="{{goodProduct}}" type="1" back-color="#fff" fore-color="#9e292f" bind:error="on_error" /> </view> .share-button-container .button--btn-navigator__hover{ background: #fff; }
小程序和vue在這點上太類似了,有木有。。。
還有好多地方沒寫,以後再慢慢加上、精簡。感受本身寫的有點冗餘,大佬勿噴!!!
若是以爲有幫助,但願幫忙點個贊和收藏