# showShareView
分享,弹窗原生拉起
# 请求参数
Prop | Type | Required | Default | Description |
---|---|---|---|---|
title | String | Y | 页面标题 | |
url | String | Y | 分享地址 |
# 接口请求示例
nativeService.showShareView({
title: this.langObj.scan_loading_PI,
url: this.basePdfUrl
})
# 返回参数
Prop | Type | Default | Description |
---|---|---|---|
-- | Promise | 分享成功then分享失败catch |
# 接口返回示例
nativeService.showShareView({
title: this.langObj.scan_loading_PI,
url: this.basePdfUrl
}).then((res) => {
}).catch((err) => {
});