小程序
小游戏
企业微信
微信支付
扫描小程序码分享
api:wx.openDocument
版本:v1.02.1904090
想请教一下,怎么在小程序打开文件后,按右上角三个点分享出去的时候,设置那个文件的名字,而不是临时文件的名字
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
onShareAppMessage:
function
(res) {
let that =
this
;
return
{
title:
'自定义标题'
,
path:
"pages/index/del/?id=1"
success:
// 转发成功
console.log(
"转发成功:"
+ JSON.stringify(res));
},
fail:
// 转发失败
"转发失败:"
}
配置一下onShareMessage呢?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
onShareAppMessage:
function
(res) {
let that =
this
;
return
{
title:
'自定义标题'
,
path:
"pages/index/del/?id=1"
,
success:
function
(res) {
// 转发成功
console.log(
"转发成功:"
+ JSON.stringify(res));
},
fail:
function
(res) {
// 转发失败
console.log(
"转发失败:"
+ JSON.stringify(res));
}
}
}
配置一下onShareMessage呢?