复制到剪贴板
wx.getClipboardData({\n success (res){\n console.log(res.data)\n }\n})
拨打电话
wx.makePhoneCall({\n phoneNumber: '1340000' //仅为示例,并非真实的电话号码\n})
使用微信内置地图查看位置
wx.getLocation({\n type: 'gcj02', //返回可以用于wx.openLocation的经纬度\n success (res) {\n const latitude = res.latitude\n const longitude = res.longitude\n wx.openLocation({\n latitude,\n longitude,\n scale: 18\n })\n }\n})
wx.addPhoneContact({\n firstName: ifirstName,\n mobilePhoneNumber: mobilePhoneNumber,\n weChatNumber: weChatNumber,\n organization: organization,\n title: title,\n addressStreet: addressStreet,\n email: email\n });
页面内发起转发。通过给 button 组件设置属性 open-type="share",可以在用户点击按钮后触发 Page.onShareAppMessage 事件,相关组件:button。
onShareAppMessage: function () {\n // return custom share data when user share.\n },
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。