小程序
CodeMonkeyyy
这个作者很懒,什么都没留下…
展开
-
小程序点击事件传值
小程序中 button 点击事件传值具体方法:1. 在 wxml button 标签中定义 data-xx 属性, xx 为你要传递的参数,例如下图中定义了 imagepath 参数,.注意: 自定义参数名 xx 一定要小写, 不要使用驼峰命名法, 否则 js 中无法识别.2. JS 中, 使用函数的参数 options, 获取你自定义的参数 options.currentTarg...原创 2019-03-21 14:11:59 · 4403 阅读 · 0 评论 -
小程序保存图片到本地
转自:小程序保存图片到本地保存小程序图片到本地wx.getImageInfo({ src: '../images/shareimg.jpg', success: function (res) { console.log(res.path) wx.getSetting({ success(res) { if (!res.authSett...转载 2019-03-21 14:21:25 · 2687 阅读 · 0 评论