相比之下,小程序的钩子函数要简单得多。 vue的钩子函数在跳转新页面时,钩子函数都会触发,但是小程序的钩子函数,页面不同的跳转方式,触发的钩子并不一样。onLoad:页面加载 一个页面只会调用一次,可以在 onLo ...
|  
                     
                    一、生命周期 先贴两张图: vue生命周期 
 小程序生命周期 
 相比之下,小程序的钩子函数要简单得多。 vue的钩子函数在跳转新页面时,钩子函数都会触发,但是小程序的钩子函数,页面不同的跳转方式,触发的钩子并不一样。onLoad:页面加载 一个页面只会调用一次,可以在  onShow:页面显示 每次打开页面都会调用一次。 onReady:页面初次渲染完成 一个页面只会调用一次,代表页面已经准备妥当,可以和视图层进行交互。 对界面的设置如  onHide:页面隐藏 当  onUnload:页面卸载 当  数据请求 在页面加载请求数据时,两者钩子的使用有些类似,vue一般会在  二、数据绑定 vue:vue动态绑定一个变量的值为元素的某个属性的时候,会在变量前面加上冒号:,例: 
 <image src="{{imgSrc}}"></image>三、列表渲染 直接贴代码,两者还是有些相似: vue: <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' }
   ]
 }
})小程序: Page({
 data: {
   items: [
     { message: 'Foo' },
     { message: 'Bar' }
   ]
 }
})
 
<text wx:for="{{items}}">{{item}}</text>四、显示与隐藏元素 vue中,使用  小程序中,使用  五、事件处理 vue:使用  <button v-on:click="counter += 1">Add 1</button> <button v-on:click.stop="counter+=1">Add1</button> //阻止事件冒泡 小程序中,全用  <button bindtap="noWork">明天不上班</button> <button catchtap="noWork">明天不上班</button> //阻止事件冒泡 六、数据双向绑定 1、设置值 在vue中,只需要再表单元素上加上  <p id="app">
   <input v-model="reason" placeholder="填写理由" class='reason'/>
</p>
 
new Vue({
 el: '#app',
 data: {
  reason:''
 }
})但是在小程序中,却没有这个功能。那怎么办呢? 当表单内容发生变化时,会触发表单元素上绑定的方法,然后在该方法中,通过  下面是代码,可以感受一下: <input bindinput="bindReason" placeholder="填写理由" class='reason' value='{{reason}}' name="reason" />
 
Page({
data:{
   reason:''
},
bindReason(e) {
   this.setData({
     reason: e.detail.value
   })
 }
})当页面表单元素很多的时候,更改值就是一件体力活了。和小程序一比较,vue的  2、取值 vue中,通过  小程序中,通过  七、绑定事件传参 在vue中,绑定事件传参挺简单,只需要在触发事件的方法中,把需要传递的数据作为形参传入就可以了,例如: <button @click="say('明天不上班')"></button>
new Vue({
 el: '#app',
 methods:{
   say(arg){
   consloe.log(arg)
   }
 }
})在  <view class='tr' bindtap='toApprove' data-id="{{item.id}}"></view>
Page({
data:{
   reason:''
},
toApprove(e) {
   let id = e.currentTarget.dataset.id;
 }
})八、父子组件通信 1、子组件的使用 在vue中,需要: 1、编写子组件 2、在需要使用的父组件中通过  3、在  4、在模板中使用 //子组件 bar.vue
<template>
 <p class="search-box">
   <p @click="say" :title="title" class="icon-dismiss"></p>
 </p>
</template>
<script>
export default{
props:{
   title:{
      type:String,
      default:''
     }
   }
},
methods:{
   say(){
      console.log('明天不上班');
      this.$emit('helloWorld')
   }
}
</script>
 
// 父组件 foo.vue
<template>
 <p class="container">
   <bar :title="title" @helloWorld="helloWorld"></bar>
 </p>
</template>
 
<script>
import Bar from './bar.vue'
export default{
data:{
   title:"我是标题"
},
methods:{
   helloWorld(){
       console.log('我接收到子组件传递的事件了')
   }
},
components:{
   Bar
}
</script>在小程序中,需要: 1、编写子组件 2、在子组件的   {
     "component": true
   }3、在需要引入的父组件的  "usingComponents": {
       "tab-bar": "../../components/tabBar/tabBar"
     }4、在父组件中,直接引入即可 <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>2、父子组件间通信 在vue中 父组件向子组件传递数据,只需要在子组件通过  // 父组件 foo.vue
<template>
 <p class="container">
   <bar :title="title"></bar>
 </p>
</template>
<script>
import Bar from './bar.vue'
export default{
data:{
   title:"我是标题"
},components:{
  Bar
}
</script>
 
// 子组件bar.vue
<template>
 <p class="search-box">
   <p :title="title" ></p>
 </p>
</template>
<script>
export default{
props:{
   title:{
      type:String,
      default:''
     }
   }
}
</script>子组件和父组件通信可以通过  在小程序中 父组件向子组件通信和vue类似,但是小程序没有通过  
 在子组件  properties: {
   // 弹窗标题
   currentpage: {            // 属性名
     type: String,     // 类型(必填),目前接受的类型包括:String, Number, Boolean, Object, Array, null(表示任意类型)
     value: 'index'     // 属性初始值(可选),如果未指定则会根据类型选择一个
   }
 }子组件向父组件通信和  //子组件中
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会给子组件添加一个  //子组件 <bar ref="bar"></bar> //父组件 this.$ref.bar.子组件的方法 
 //子组件
<bar id="bar"></bar>
// 父组件
this.selectComponent('#id').syaHello()小程序和vue在这点上太相似了,有木有。。 相关推荐: 微信小程序里wx:for和wx:for-item有什么区别 微信小程序和App手机软件对比评测 以上就是Vue 和微信小程序的区别有哪些?对比分析的详细内容,更多请关注模板之家(www.mb5.com.cn)其它相关文章!  | 
                
