- 希望showModel点击确定时,允许阻止对话框关闭?
1、当editable为true时,增加beforeConfirm方法,允许校验输入内容和阻止触发 success。 2、beforeConfirm传入对话框实例instance,提供showLoading() 和 hideLoading(),在confirm按钮前面添加loading状态,并禁用cancel和confirm按钮。 wx.showModal({ title: '提示', content: '这是一个模态弹窗', editable: true, beforeConfirm: async (res, instance) => { if(!res.content) { //提示输入内容不能为空,并阻止触发 success return false } instance.showLoading(); const response = await http(); instance.hideLoading(); }, success (res) { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } })
2023-10-10 - 小程序插件是否可以类似分包,不要占用主包大小?
希望小程序插件可以像分包一样,进入时再加载,不要占用主包大小
2023-08-10 - movable-view 设置x、y时,不应该触发change
https://developers.weixin.qq.com/miniprogram/dev/component/movable-view.html movable-view的 x、y通常是用来设置初始位置,改变x、y时不应该触发change条件,导至循环触发change。如果不想修复,至少有一个属性来关闭这一特性。
2023-07-27 - 文档里的基础库版本分布要把PC端列出来
https://developers.weixin.qq.com/miniprogram/dev/framework/client-lib/version.html
2022-09-19