學了這麼久,vue和微信小程序到底有什麼樣的區別?

前言

寫了vue項目和小程序,發現兩者有許多相同之處,在此想總結一下兩者的共同點和區別。相比之下,小程序的鉤子函數要簡單得多。vue

寫了vue項目和小程序,發現兩者有許多相同之處,在此想總結一下兩者的共同點和區別。面試

1、生命週期json

先貼兩張圖:小程序

vue生命週期segmentfault

小程序生命週期bash

相比之下,小程序的鉤子函數要簡單得多。app

vue的鉤子函數在跳轉新頁面時,鉤子函數都會觸發,可是小程序的鉤子函數,頁面不一樣的跳轉方式,觸發的鉤子並不同。框架

  • onLoad: 頁面加載

一個頁面只會調用一次,能夠在 onLoad 中獲取打開當前頁面所調用的 query 參數。ide

  • onShow: 頁面顯示

每次打開頁面都會調用一次。函數

  • onReady: 頁面初次渲染完成

一個頁面只會調用一次,表明頁面已經準備穩當,能夠和視圖層進行交互。

對界面的設置如wx.setNavigationBarTitle請在onReady以後設置。詳見生命週期

  • onHide: 頁面隱藏

當navigateTo或底部tab切換時調用。

  • onUnload: 頁面卸載

當redirectTo或navigateBack的時候調用。

數據請求

在頁面加載請求數據時,二者鉤子的使用有些相似,vue通常會在created或者mounted中請求數據,而在小程序,會在onLoad或者onShow中請求數據。

2、數據綁定

VUE:vue動態綁定一個變量的值爲元素的某個屬性的時候,會在變量前面加上冒號:,例:

1.  <img :src="imgSrc"/> 
複製代碼

小程序:綁定某個變量的值爲元素屬性時,會用兩個大括號括起來,若是不加括號,爲被認爲是字符串。例:

1.  <image src="{{imgSrc}}"></image> 
複製代碼

3、列表渲染

直接貼代碼,二者仍是有些類似

vue:

1.  <ul id="example-1">  
2.  <li v-for="item in items">  
3.  {{ item.message }}  
4.  </li>  
5.  </ul>  

7.  var example1 = new Vue({  
8.  el: '#example-1',  
9.  data: {  
10.  items: [  
11.  { message: 'Foo' },  
12.  { message: 'Bar' }  
13.  ] 
14.  }  
15.  })  

複製代碼

小程序:

1.  Page({  
2.  data: {  
3.  items: [  
4.  { message: 'Foo' },  
5.  { message: 'Bar' }  
6.  ]  
7.  }  
8.  })  

10.  <text wx:for="{{items}}">{{item}}</text>  

複製代碼

4、顯示與隱藏元素

vue中,使用v-if 和v-show控制元素的顯示和隱藏

小程序中,使用wx-if和hidden控制元素的顯示和隱藏

5、事件處理

vue:使用v-on:event綁定事件,或者使用@event綁定事件,例如:

1.  <button v-on:click="counter += 1">Add 1</button>  
2.  <button v-on:click.stop="counter+=1">Add1</button>  //阻止事件冒泡 

複製代碼

小程序中,全用bindtap(bind+event),或者catchtap(catch+event)綁定事件,例如:

1.  <button bindtap="noWork">明天不上班</button>  
2.  <button catchtap="noWork">明天不上班</button>  //阻止事件冒泡  

複製代碼

6、數據雙向綁定

1.設置值

在vue中,只須要再表單元素上加上v-model,而後再綁定data中對應的一個值,當表單元素內容發生變化時,data中對應的值也會相應改變,這是vue很是nice的一點。

1.  <div id="app">  
2.  <input v-model="reason" placeholder="填寫理由" class='reason'/>  
3.  </div>  

5.  new Vue({  
6.  el: '#app',  
7.  data: {  
8.  reason:''  
9.  }  
10.  })  

複製代碼

可是在小程序中,卻沒有這個功能。那怎麼辦呢?

當表單內容發生變化時,會觸發表單元素上綁定的方法,而後在該方法中,經過this.setData({key:value})來將表單上的值賦值給data中的對應值。

下面是代碼,能夠感覺一下:

1.  <input bindinput="bindReason" placeholder="填寫理由" class='reason' value='{{reason}}' name="reason" />  
2.  Page({  
3.  data:{  
4.  reason:''  
5.  },  
6.  bindReason(e) {  
7.  this.setData({  
8.  reason: e.detail.value  
9.  })  
10.  }  
11.  }) 

複製代碼

當頁面表單元素不少的時候,更改值就是一件體力活了。和小程序一比較,vue的v-model簡直爽的不要不要的。

2.取值

vue中,經過this.reason取值

小程序中,經過this.data.reason取值

7、綁定事件傳參

在vue中,綁定事件傳參挺簡單,只須要在觸發事件的方法中,把須要傳遞的數據做爲形參傳入就能夠了,例如:

1.  <button @click="say('明天不上班')"></button>  
2.  new Vue({  
3.  el: '#app',  
4.  methods:{  
5.  say(arg){  
6.  consloe.log(arg)  
7.  }  
8.  }  
9.  })  

複製代碼

在小程序中,不能直接在綁定事件的方法中傳入參數,須要將參數做爲屬性值,綁定到元素上的data-屬性上,而後在方法中,經過e.currentTarget.dataset.*的方式獲取,從而完成參數的傳遞,很麻煩有沒有...

1.  <view class='tr' bindtap='toApprove' data-id="{{item.id}}"></view>  
2.  Page({  
3.  data:{  
4.  reason:''  
5.  },  
6.  toApprove(e) {  
7.  let id = e.currentTarget.dataset.id;  
8.  }  
9.  })  

複製代碼

8、父子組件通訊

1.子組件的使用

在vue中,須要:

  1. 編寫子組件
  2. 在須要使用的父組件中經過import引入
  3. 在vue的components中註冊
  4. 在模板中使用
1.  //子組件 bar.vue  
2.  <template>  
3.  <div class="search-box">  
4.  <div @click="say" :title="title" class="icon-dismiss"></div>  
5.  </div>  
6.  </template>  
7.  <script>  
8.  export default{  
9.  props:{  
10.  title:{  
11.  type:String,  
12.  default:''  
13.  }  
14.  }  
15.  }, 

17.  methods:{  
18.  say(){ 
19.  console.log('明天不上班');  
20.  this.$emit('helloWorld')  
21.  }  
22.  } 
23.  </script>  

25.  // 父組件 foo.vue  
26.  <template>  
27.  <div class="container">  
28.  <bar :title="title" @helloWorld="helloWorld"></bar>  
29.  </div>  
30.  </template>  

32.  <script>  
33.  import Bar from './bar.vue'  
34.  export default{  
35.  data:{  
36.  title:"我是標題"  
37.  },  
38.  methods:{  
39.  helloWorld(){  
40.  console.log('我接收到子組件傳遞的事件了')  
41.  }  
42.  },  
43.  components:{ 
44.  Bar  
45.  }  
46.  </script>  

複製代碼

在小程序中,須要:

1.編寫子組件

2. 在子組件的json文件中,將該文件聲明爲組件

1.  {  
2.  "component"true  
3.  }  

複製代碼

3.在須要引入的父組件的json文件中,在usingComponents填寫引入組件的組件名以及路徑

1.  "usingComponents": {  
2.  "tab-bar""../../components/tabBar/tabBar"  
3.  }  

複製代碼

4.在父組件中,直接引入便可

1.  <tab-bar currentpage="index"></tab-bar> 

複製代碼

具體代碼:

1.  // 子組件  
2.  <!--components/tabBar/tabBar.wxml-->  
3.  <view class='tabbar-wrapper'>  
4.  <view class='left-bar {{currentpage==="index"?"active":""}}' bindtap='jumpToIndex'>  
5.  <text class='iconfont icon-shouye'></text>  
6.  <view>首頁</view>  
7.  </view>  
8.  <view class='right-bar {{currentpage==="setting"?"active":""}}' bindtap='jumpToSetting'>  
9.  <text class='iconfont icon-shezhi'></text>  
10.  <view>設置</view>  
11.  </view>  
12.  </view>  

複製代碼

2.父子組件間通訊

在vue中

父組件向子組件傳遞數據,只須要在子組件經過v-bind傳入一個值,在子組件中,經過props接收,便可完成數據的傳遞,示例:

1.  // 父組件 foo.vue  
2.  <template>  
3.  <div class="container">  
4.  <bar :title="title"></bar>  
5.  </div>  
6.  </template>  
7.  <script>  
8.  import Bar from './bar.vue'  
9.  export default{  
10.  data:{  
11.  title:"我是標題"  
12.  },  
13.  components:{  
14.  Bar  
15.  }  
16.  </script>  

18.  // 子組件bar.vue  
19.  <template>  
20.  <div class="search-box">  
21.  <div :title="title" ></div>  
22.  </div>  
23.  </template>  
24.  <script>  
25.  export default{  
26.  props:{  
27.  title:{  
28.  type:String,  
29.  default:''  
30.  }  
31.  }  
32.  }  
33.  </script>  

複製代碼

子組件和父組件通訊能夠經過this.$emit將方法和數據傳遞給父組件。

在小程序中

父組件向子組件通訊和vue相似,可是小程序沒有經過v-bind,而是直接將值賦值給一個變量,以下:

1.  <tab-bar currentpage="index"></tab-bar> 

複製代碼

此處, 「index」就是要向子組件傳遞的值

在子組件properties中,接收傳遞的值

1.  properties: {  
2.  // 彈窗標題  
3.  currentpage: {            // 屬性名  
4.  type: String,     // 類型(必填),目前接受的類型包括:String, Number, Boolean, Object, Array, null(表示任意類型)  
5.  value: 'index'     // 屬性初始值(可選),若是未指定則會根據類型選擇一個 
6.  } 
7.  }  
複製代碼

子組件向父組件通訊和vue也很相似,代碼以下:

1.  //子組件中  
2.  methods: {     
3.  // 傳遞給父組件  
4.  cancelBut: function (e) {  
5.  var that = this;  
6.  var myEventDetail = { pickerShow: falsetype'cancel' } // detail對象,提供給事件監聽函數  
7.  this.triggerEvent('myevent', myEventDetail) //myevent自定義名稱事件,父組件中使用  
8.  }, 
9.  }  
10.  //父組件中  
11.  <bar bind:myevent="toggleToast"></bar>   
12.  // 獲取子組件信息  
13.  toggleToast(e){  
14.  console.log(e.detail)  
15.  }  

複製代碼

若是父組件想要調用子組件的方法

vue會給子組件添加一個ref屬性,經過this.$refs.ref的值即可以獲取到該子組件,而後即可以調用子組件中的任意方法,例如:

1.  //子組件  
2.  <bar ref="bar"></bar>  
3.  //父組件  
4.  this.$ref.bar.子組件的方法  
複製代碼

小程序是給子組件添加id或者class,而後經過this.selectComponent找到子組件,而後再調用子組件的方法,示例:

1.  //子組件  
2.  <bar id="bar"></bar>  
3.  // 父組件  
4.  this.selectComponent('#id').syaHello()  

複製代碼

小程序和vue在這點上太類似了,有木有。。。

9、廢話

還有好多地方沒寫,以後再慢慢加上、精簡。感受本身寫的有點冗餘,大佬勿噴!!!

原來地址: https://segmentfault.com/a/1190000015684864

更多參考

終於,我仍是碼造一個了中國地圖

SVG前戲—讓你的View多姿多彩

分享幾個Android很強勢的的開源框架

金9銀10的面試黃金季節,分享幾個重要的面試題

相關文章
相關標籤/搜索