===wxml
===js
Component({
properties:{
//some props...
},
data:{
//some data...
},
attached(){
//loaded...
},
methods:{
onShareAppMessage(res) {
//这里不会触发
console.log(res);
if (res.from === 'button') {
// 来自页面内转发按钮
console.log(res.target)
}
return {
title: '自定义转发标题',
path: '/page/user?id=123',
success: function(res) {
// 转发成功
},
fail: function(res) {
// 转发失败
}
}
}
}
})
本文来自微信小程序开发者论坛 微信小程序工厂 http://www.xcxgc.com 转载请保留。
微信小程序开发者回答:
吴***:
onShareAppMessage放错位置了把
I***:
分享方法不能由其他方法触发的...
更新微信6.5.2后无法真机预览微信小程序+微信小程序教程
J***:
在page中定义onShareAppMessage()转发事件, 自定义组件button上绑定一个tap事件,将需要传递的参数邦定到触发事件函数的第二个参数上
/* 自定义组件内 */
this.triggerEvent('onShareAppMessage', params) // 触发事件
本文网址:http://www.91bianli.com/weixinxiaochengxu/54525.html