码迷,mamicode.com
首页 > 微信 > 详细

微信小程序开发小结

时间:2019-01-22 13:16:39      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:class   sage   message   ima   option   func   分享功能   使用   元素   

  1、点击按钮分享功能:

  使用Button组件,设置open-type="share",然后在js文件的onShareAppMessage方法中设置如下:

onShareAppMessage: function (options) {
let shareObj = {}
if (options.from == "button") {
    //设置title、path、imageUrl
   shareObj.title = ‘‘
   shareObj.path = ‘‘
   shareObj.imageUrl = ‘‘
}
return shareObj
}

 

  2、Navigator组件中的子元素也绑定了事件,点击子元素触发时,页面会跳转。

  解决:子元素绑定事件时不要用bindtap,改用catchtap

微信小程序开发小结

标签:class   sage   message   ima   option   func   分享功能   使用   元素   

原文地址:https://www.cnblogs.com/jf-67/p/10303099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!