차이점: 1. "v-if" 및 "v-show"는 vue에서 요소의 표시 및 숨기기를 제어하는 데 사용되는 반면, "wx-if" 및 "hidden"은 미니 프로그램에서 사용됩니다. 2. "v" "는 vue -on:event"에서 이벤트를 바인딩하는 데 사용되는 반면, 미니 프로그램은 "bindtap(bind+event)"를 사용하여 이벤트를 바인딩합니다.
이 튜토리얼의 운영 환경: Windows 7 시스템, vue 버전 2.9.6, DELL G3 컴퓨터.
먼저 두 장의 사진을 게시합니다:
vue 라이프 사이클
미니 프로그램 라이프 사이클
반대로 미니 프로그램
후크 기능이 훨씬 간단합니다. 小程序
的钩子函数要简单得多。
vue
的钩子函数在跳转新页面时,钩子函数都会触发,但是小程序
的钩子函数,页面不同的跳转方式,触发的钩子并不一样。
onLoad
: 页面加载onLoad
中获取打开当前页面所调用的 query
参数。onShow
: 页面显示onReady
: 页面初次渲染完成wx.setNavigationBarTitle
请在onReady
之后设置。详见生命周期onHide
: 页面隐藏navigateTo
或底部tab切换时调用。onUnload
: 页面卸载redirectTo
或navigateBack
的时候调用。数据请求
在页面加载请求数据时,两者钩子的使用有些类似,vue
一般会在created
或者mounted
中请求数据,而在小程序
,会在onLoad
或者onShow
中请求数据。
VUE
:vue动态绑定一个变量的值为元素的某个属性的时候,会在变量前面加上冒号:,例:
<img :src="imgSrc"/>
小程序
:绑定某个变量的值为元素属性时,会用两个大括号括起来,如果不加括号,为被认为是字符串。例:
<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
中,使用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> //阻止事件冒泡
1.设置值
在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
简直爽的不要不要的。
2.取值
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.*
vue
의 후크 기능은 새 페이지로 이동할 때 실행되지만 미니 프로그램
의 후크 기능은 다른 페이지 이동 방법에서는 후크를 실행하지 않습니다. 동일합니다. 🎜onLoad
: 페이지 로드onLoad</에서 현재 페이지를 열기 위해 호출할 수 있습니다. code> 쿼리
매개변수. onShow
: 페이지 표시onReady
: 페이지의 초기 렌더링이 완료되었습니다.wx.setNavigationBarTitle
과 같은 인터페이스 설정은 onReady
이후에 설정되어야 합니다. 자세한 내용은 라이프 사이클을 참조하세요.onHide
: 페이지 숨기기navigateTo
또는 하단 탭이 전환될 때 호출됩니다. onUnload
: 페이지 언로드redirectTo
또는 navigateBack
시 호출됩니다. created에서 사용됩니다.
또는 mounted
에서 데이터를 요청하고, 미니 프로그램
에서는 onLoad
또는 onShow</에서 데이터를 요청합니다. 코드>. 🎜🎜2. 데이터 바인딩🎜🎜<code>VUE
: vue가 변수 값을 요소의 속성에 동적으로 바인딩하면 변수 앞에 콜론이 추가됩니다. 예: 🎜<view class='tr' bindtap='toApprove' data-id="{{item.id}}"></view> Page({ data:{ reason:'' }, toApprove(e) { let id = e.currentTarget.dataset.id; } })
//子组件 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:{ title:"我是标题" }, methods:{ helloWorld(){ console.log('我接收到子组件传递的事件了') } }, components:{ Bar } </script>
{ "component": true }
"usingComponents": { "tab-bar": "../../components/tabBar/tabBar" }
v-if
및 v-show
를 사용하여 요소 표시 및 숨기기를 제어하세요🎜🎜미니 프로그램<에서 /code>, <code>wx-if
및 hidden
을 사용하여 요소🎜🎜5의 표시 및 숨기기를 제어합니다. 이벤트 처리🎜🎜vue
: 사용 v-on :event
를 사용하여 이벤트를 바인딩하거나 @event
를 사용하여 이벤트를 바인딩합니다. 예: 🎜<tab-bar currentpage="index"></tab-bar>
Mini Program
, 모두 < code>bindtap(bind+ event) 또는 catchtap(catch+event)
를 사용하여 이벤트를 바인딩합니다. 예: 🎜// 子组件 <!--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>
form
요소에 v-model
을 추가한 후 해당 요소를 바인딩하면 됩니다. data
의 값입니다. 양식 요소의 내용이 변경되면 data
의 해당 값도 그에 따라 변경됩니다. 이는 vue<의 매우 좋은 점입니다. /코드>. 🎜<div class="code" style="position:relative; padding:0px; margin:0px;"><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:js;toolbar:false;">// 父组件 foo.vue
<template>
<div class="container">
<bar :title="title"></bar>
</div>
</template>
<script>
import Bar from &#39;./bar.vue&#39;
export default{
data:{
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:&#39;&#39;
}
}
}
</script></pre><div class="contentsignin">로그인 후 복사</div></div><div class="contentsignin">로그인 후 복사</div></div>🎜그런데 <code>미니 프로그램
에는 그런 기능이 없습니다. 무엇을 해야 할까요? this.setData({key:value})
가 사용됩니다. 양식에 데이터를 설정합니다. 값은 data
의 해당 값에 할당됩니다. <tab-bar currentpage="index"></tab-bar> 此处, “index”就是要向子组件传递的值
미니 프로그램
과 비교할 때 vue
의 v-model
은 그냥 지나치기에는 너무 좋습니다. 🎜🎜🎜2.값 가져오기🎜🎜🎜vue
에서 this.reason
을 전달하여 값을 가져옵니다🎜🎜미니 프로그램
에서 전달 this.data.reason
값 🎜🎜🎜 7. 이벤트 전달 매개변수 바인딩 🎜🎜🎜 vue
에서 이벤트 전달 매개변수 바인딩은 매우 간단합니다. 예를 들어, 🎜properties: { // 弹窗标题 currentpage: { // 属性名 type: String, // 类型(必填),目前接受的类型包括:String, Number, Boolean, Object, Array, null(表示任意类型) value: 'index' // 属性初始值(可选),如果未指定则会根据类型选择一个 } }
미니 프로그램
에서는 이벤트 바인딩 메서드에서 매개변수를 직접 전달할 수 없습니다. 속성 값이 요소의 data-
속성에 바인딩되어 있으므로 매개변수를 전달해야 하며, 그런 다음 메서드에서 e.currentTarget.dataset.*</를 통해 가져옵니다. code> 매개변수 전송을 완료하려면, 정말 번거롭죠...🎜<div class="code" style="position:relative; padding:0px; margin:0px;"><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:js;toolbar:false;"><view class=&#39;tr&#39; bindtap=&#39;toApprove&#39; data-id="{{item.id}}"></view>
Page({
data:{
reason:&#39;&#39;
},
toApprove(e) {
let id = e.currentTarget.dataset.id;
}
})</pre><div class="contentsignin">로그인 후 복사</div></div><div class="contentsignin">로그인 후 복사</div></div><h2><strong>八、父子组件通信</strong></h2><p><strong><span style="font-size: 16px;">1.子组件的使用</span></strong></p><p>在<code>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:{ 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>
2.父子组件间通信
在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:{ 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()
【相关推荐:《vue.js教程》】
위 내용은 vue와 WeChat 미니 프로그램의 차이점은 무엇인가요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!