modal弹出框遮罩层可实现提示信息、验证码等功能
然而在官方文档已经删除了modal的页面,说要废弃modal
就个人而言modal组件无法被wx.showmodal完全替代。大家都知道小程序的wxml的组件可以通过改变js的值实现重新渲染,而接口是无法实现的
有同感的也不止博主一个人
官方18-5-13的建议要实现此类功能也是用modal
属性
说下遮罩层实现,通过改变modal的hidden属性来控制是否显示,通过监听confirm方法来确认提交,通过bindinput来监听modal内表单组件内容
js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
page({ data: { hiddenmodal1: true , hiddenmodal2: true , input: null }, showmodal1: function (e){ this .setdata({hiddenmodal1: false }) }, model1confirm: function (e){ this .setdata({ hiddenmodal1: true }) wx.showtoast({ title: '我觉得ok' , }) }, model1cancel: function (e){ this .setdata({ hiddenmodal1: true }) wx.showtoast({ title: '我觉得不行' , }) }, input: function (e){ this .setdata({input:e.detail.value}) }, showmodal2: function (e) { this .setdata({ hiddenmodal2: false }) }, model2confirm: function (e) { this .setdata({ hiddenmodal2: true }) wx.showtoast({ title: '确定' + this .data.input, icon: 'none' }) }, model2cancel: function (e) { this .setdata({ hiddenmodal2: true }) wx.showtoast({ title: '取消' + this .data.input, icon: 'none' }) } }) |
wxml
1
2
3
4
5
6
7
8
|
< button type = "primary" bindtap = 'showmodal1' >弹出提示modal</ button > < button type = "default" bindtap = 'showmodal2' >弹出带文本框的modal</ button > < modal hidden = "{{hiddenmodal1}}" title = "提示modal" confirm-text = "是" cancel-text = "否" bindconfirm = "model1confirm" bindcancel = "model1cancel" > modal是真的好用 </ modal > < modal hidden = "{{hiddenmodal2}}" title = "文本框的modal" confirm-text = "提交" cancel-text = "取消" bindconfirm = "model2confirm" bindcancel = "model2cancel" > < input placeholder = '请输入内容' bindinput = 'input' /> </ modal > |
到此这篇关于微信小程序实现modal弹出框遮罩层组件(可带文本框)的文章就介绍到这了,更多相关微信小程序modal弹出框遮罩层组件内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/xjc8289555/article/details/80327267