onShareTimeline打印this是undefined?
场景:微信小程序安卓手机分享朋友圈,this.data.title 取不到值,直接报错。
//分享朋友圈
onShareTimeline() {
console.log('分享朋友圈',this) // 分享朋友圈
return {
title: this.data.title // Cannot read property 'data' of undefined
}
}