小程序
小游戏
企业微信
微信支付
扫描小程序码分享
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
content你只要用字符串+你的变量就可以了
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.showModal({ title: '提示', content: '这是一个模态弹窗', success (res) { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } })
https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.showModal.html
替换成你需要的 data
wx.showmodal({
content:this.data.value
})
这里的value就是你获取到的值
模态框是组件么?如果是组件得话,在引用得页面传参进来就好
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
content你只要用字符串+你的变量就可以了
wx.showModal({ title: '提示', content: '这是一个模态弹窗', success (res) { if (res.confirm) { console.log('用户点击确定') } else if (res.cancel) { console.log('用户点击取消') } } })
https://developers.weixin.qq.com/miniprogram/dev/api/ui/interaction/wx.showModal.html
替换成你需要的 data
wx.showmodal({
content:this.data.value
})
这里的value就是你获取到的值
模态框是组件么?如果是组件得话,在引用得页面传参进来就好