小程序
小游戏
企业微信
微信支付
扫描小程序码分享
cover-view 中的文本设置了text-decoration:line-through,模拟器上设置了有效果,可是在安卓上没有效果
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
iphone手机也没有效果。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
求楼主帮忙解答下:=>项目中的一个需求,点击button后,再确定分享的内容。 但是,代码的执行顺序是 先 onShareAppMessage ,在触发点击事件 有没有什么配置 能让他 先触发点击事件,再调用onShareAppMessage
onShareAppMessage:
function
(res) {
let username = app.globalData.userInfo.nick_name ||
''
let shareInfo =
this
.pageData.shareInfo
shareInfo.path =
'/pages/index/index'
if
(res.from ===
'button'
) {
// 来自页面内转发按钮
console.log(res.target)
let activityId = res.target.dataset.activityId
let launchId = res.target.dataset.launchId
let url = `/pages/carpool/index/index?activity_id=${activityId}&lanuch_id=${launchId}`
shareInfo.path = url
console.log(url)
}
return
shareInfo
},
在onShareAppMessage中判断一下,看是不是点击的页面的分享
好的谢谢楼主
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
iphone手机也没有效果。
求楼主帮忙解答下:=>项目中的一个需求,点击button后,再确定分享的内容。 但是,代码的执行顺序是 先 onShareAppMessage ,在触发点击事件 有没有什么配置 能让他 先触发点击事件,再调用onShareAppMessage
onShareAppMessage:
function
(res) {
let username = app.globalData.userInfo.nick_name ||
''
let shareInfo =
this
.pageData.shareInfo
shareInfo.path =
'/pages/index/index'
if
(res.from ===
'button'
) {
// 来自页面内转发按钮
console.log(res.target)
let activityId = res.target.dataset.activityId
let launchId = res.target.dataset.launchId
let url = `/pages/carpool/index/index?activity_id=${activityId}&lanuch_id=${launchId}`
shareInfo.path = url
console.log(url)
}
return
shareInfo
},
在onShareAppMessage中判断一下,看是不是点击的页面的分享
好的谢谢楼主