码迷,mamicode.com
首页 > 微信 > 详细

wepy 小程序开发(Mixin混合)

时间:2019-06-03 12:27:54      阅读:501      评论:0      收藏:0      [点我收藏+]

标签:程序   define   vue   ide   extends   eve   end   guid   asc   

默认式混合

对于组件data数据,components组件,events事件以及其它自定义方法采用默认式混合,即如果组件未声明该数据,组件,事件,自定义方法等,那么将混合对象中的选项将注入组件之中。对于组件已声明的选项将不受影响。

// mixins/test.js
import wepy from ‘wepy‘;

export default class TestMixin extends wepy.mixin {
    data = {
        foo: ‘foo defined by page‘,
        bar: ‘bar defined by testMix‘
    };
    methods = {
    tap () {
      console.log(‘mix tap‘);
    }
  }
}
// pages/index.wpy
import wepy from ‘wepy‘;
import TestMixin from ‘./mixins/test‘;

export default class Index extends wepy.page {
    data = {
        foo: ‘foo defined by index‘
    };
    mixins = [TestMixin ];
    onShow() {
        console.log(this.foo); // foo defined by index
        console.log(this.bar); // bar defined by testMix
    }
}

兼容式混合

对于组件methods响应事件,以及小程序页面事件将采用兼容式混合,即先响应组件本身响应事件,然后再响应混合对象中响应事件。

注意,这里事件的执行顺序跟Vue中相反,Vue中是先执行mixin中的函数, 再执行组件本身的函数

// mixins/test.js
import wepy from ‘wepy‘;

export default class TestMixin extends wepy.mixin {
    methods = {
        tap () {
            console.log(‘mixin tap‘);
        }
    };
    onShow() {
        console.log(‘mixin onshow‘);
    }
}
// pages/index.wpy
import wepy from ‘wepy‘;
import TestMixin from ‘./mixins/test‘;

export default class Index extends wepy.page {

    mixins = [TestMixin];
    methods = {
        tap () {
            console.log(‘index tap‘);
        }
    };
    onShow() {
        console.log(‘index onshow‘);
    }
}
// index onshow
// mixin onshow
// ----- when tap
// index tap
// mixin tap

wepy 小程序开发(Mixin混合)

标签:程序   define   vue   ide   extends   eve   end   guid   asc   

原文地址:https://www.cnblogs.com/ceceliahappycoding/p/10966535.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!