手把手教你实现微信小程序中的自定义组件,微信小程序自定义导航

来源:未知 浏览 126次 时间 2021-06-17 09:39

之前做小程序开发的时候对于开发来说比较头疼的莫过于自定义组件了当时官方对这方面的文档也只是寥寥几句营销推广当时官方对这方面的文档也只是寥寥几句一笔带过而已所以写起来真的是非常非常痛苦!!

好在微信小程序的库从 1.6.3 开始官方对于自定义组件这一块有了比较大的变动首先比较明显的感觉就是文档比以前全多了有木有!(小程序文档)现在小程序支持简洁的组件化编程可以将页面内的功能模块抽象成自定义组件以便在不同的页面中复用提高自己代码的可读性降低自己维护代码的成本!

手把手教你实现微信小程序中的自定义组件

具体实现

要做自定义组件我们先定一个小目标比如说我们在小程序中实现一下 WEUI 中的弹窗组件基本效果图如下。

手把手教你实现微信小程序中的自定义组件

Step2

组件初始化工作准备完成接下来就是组件的相关配置首先我们需要声明自定义组件也就是将 dialog.json 中 component 字段设为 true :

{ "component": true, // 自定义组件声明 "usingComponents": {} // 可选项用于引用别的组件 }

其次我们需要在 dialog.wxml 文件中编写弹窗组件模版在 dialog.wxss 文件中加入弹窗组件样式它们的写法与页面的写法类似我就不赘述直接贴代码啦~

dialog.wxml 文件如下:

<view class='wx_dialog_container' hidden="{{!isShow}}"> <view class='wx-mask'>view> <view class='wx-dialog'> <view class='wx-dialog-title'>{{ title }}view> <view class='wx-dialog-content'>{{ content }}view> <view class='wx-dialog-footer'> <view class='wx-dialog-btn' catchtap='_cancelEvent'>{{ cancelText }}view> <view class='wx-dialog-btn' catchtap='_confirmEvent'>{{ confirmText }}view> view> view> view>

dialog.wxss 文件如下:

/* components/Dialog/dialog.wxss */ .wx-mask{ position: fixed; z-index: 1000; top: 0; right: 0; left: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); } .wx-dialog{ position: fixed; z-index: 5000; width: 80%; max-width: 600rpx; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); background-color: #FFFFFF; text-align: center; border-radius: 3px; overflow: hidden; } .wx-dialog-title{ font-size: 18px; padding: 15px 15px 5px; } .wx-dialog-content{ padding: 15px 15px 5px; min-height: 40px; font-size: 16px; line-height: 1.3; word-wrap: break-word; word-break: break-all; color: #999999; } .wx-dialog-footer{ display: flex; align-items: center; position: relative; line-height: 45px; font-size: 17px; } .wx-dialog-footer::before{ content: ''; position: absolute; left: 0; top: 0; right: 0; height: 1px; border-top: 1px solid #D5D5D6; color: #D5D5D6; -webkit-transform-origin: 0 0; transform-origin: 0 0; -webkit-transform: scaleY(0.5); transform: scaleY(0.5); } .wx-dialog-btn{ display: block; -webkit-flex: 1; flex: 1; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); position: relative; } .wx-dialog-footer .wx-dialog-btn:nth-of-type(1){ color: #353535; } .wx-dialog-footer .wx-dialog-btn:nth-of-type(2){ color: #3CC51F; } .wx-dialog-footer .wx-dialog-btn:nth-of-type(2):after{ content: " "; position: absolute; left: 0; top: 0; width: 1px; bottom: 0; border-left: 1px solid #D5D5D6; color: #D5D5D6; -webkit-transform-origin: 0 0; transform-origin: 0 0; -webkit-transform: scaleX(0.5); transform: scaleX(0.5); } step3

组件的结构和样式都有了还缺少什么呢没错还缺 js  眼睛比较犀利的同学可能已经发现了我们在 dialog.wxml 文件中的会有一些比如 {{ isShow }} 、 {{ title }} 这样的模版变量还定义了 _cancelEvent 和 _confirmEvent 两个方法其具体实现就是在 dialog.js 中。

dialog.js 是自定义组件的构造器是使用小程序中 Component 构造器生成的调用 Component 构造器时可以用来指定自定义组件的属性、数据、方法等具体的细节可以参考一下官方的文档

下面我通过代码注释解释一下构造器中的一些属性的使用:

// components/Dialog/dialog.js Component({ options: { multipleSlots: true // 在组件定义时的选项中启用多slot支持 }, /** * 组件的属性列表 * 用于组件自定义设置 */ properties: { // 弹窗标题 title: { // 属性名 type: String, // 类型(必填)目前接受的类型包括:String, Number, Boolean, Object, Array, null(表示任意类型) value: '标题' // 属性初始值(可选)如果未指定则会根据类型选择一个 }, // 弹窗内容 content :{ type : String , value : '弹窗内容' }, // 弹窗取消按钮文字 cancelText :{ type : String , value : '取消' }, // 弹窗确认按钮文字 confirmText :{ type : String , value : '确定' } }, /** * 私有数据,组件的初始数据 * 可用于模版渲染 */ data: { // 弹窗显示控制 isShow:false }, /** * 组件的方法列表 * 更新属性和数据的方法与更新页面数据的方法类似 */ methods: { /* * 公有方法 */ //隐藏弹框 hideDialog(){ this.setData({ isShow: !this.data.isShow }) }, //展示弹框 showDialog(){ this.setData({ isShow: !this.data.isShow }) }, /* * 内部私有方法建议以下划线开头 * triggerEvent 用于触发事件 */ _cancelEvent(){ //触发取消回调 this.triggerEvent("cancelEvent") }, _confirmEvent(){ //触发成功回调 this.triggerEvent("confirmEvent"); } } }) step4

截至目前为止你应该完成了一个自定义弹窗组件的大部分可是你保存后并没有发现任何变化因为我们还需要在 index.wxml 文件中引入它!

首先需要在 index.json 中引入组件:

{ "usingComponents": { "dialog": "/components/Dialog/dialog" } }

然后我们在 index.wxml 中引入它并增加我们自定义的一些值如下

<view class="container"> <dialog id='dialog' title='我是标题' content='恭喜你学会了小程序组件' cancelText='知道了' confirm='谢谢你' bind:cancelEvent="_cancelEvent" bind:confirmEvent="_confirmEvent"> dialog> <button type="primary" bindtap="showDialog"> ClickMe! button> view>

嗯哪还差最后一步 index.js 配置没错这个也很简单我就复制粘贴了

//index.js //获取应用实例 const app = getApp() Page({ /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { //获得dialog组件 this.dialog = this.selectComponent("#dialog"); }, showDialog(){ this.dialog.showDialog(); }, //取消事件 _cancelEvent(){ console.log('你点击了取消'); this.dialog.hideDialog(); }, //确认事件 _confirmEvent(){ console.log('你点击了确定'); this.dialog.hideDialog(); } })

到此!大功告成!

标签: gt我们view组件