Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
e76ece07
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
6005
Star
91
Fork
164
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
e76ece07
编写于
11月 06, 2024
作者:
M
mahaifeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[share]添加系统分享示例
上级
9d6ee5c3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
39 addition
and
40 deletion
+39
-40
pages/template/share/share.uvue
pages/template/share/share.uvue
+39
-40
未找到文件。
pages/template/share/share.uvue
浏览文件 @
e76ece07
...
...
@@ -15,7 +15,6 @@
<button class="button" @click="sharePrivateFile()">分享文件(单个)</button>
<button class="button" @click="sharePrivateFiles()">分享文件(多个)</button>
<button class="button" type="primary" @click="shareErrorLink()">分享链接(格式错误)</button>
<button class="button" type="primary" @click="sharePrivateErrorImg()">分享单个本地图片(错误路径)</button>
<button class="button" type="primary" @click="sharePrivateErrorImgs()">分享多个本地图片(含有错误路径)</button>
<button class="button" type="primary" @click="sharePrivateErrorVideos()">分享Video文件(错误路径)</button>
...
...
@@ -23,7 +22,7 @@
<button class="button" type="primary" @click="sharePrivateErrorFiles()">分享文件(错误路径)</button>
<button class="button" type="warn" @click="sharePubImg()">选择图片并分享</button>
<button class="button" type="warn" @click="sharePubMedias()">选择
media
并分享</button>
<button class="button" type="warn" @click="sharePubMedias()">选择
video
并分享</button>
<button class="button" type="warn" @click="shareSnapShot()">指定view截图并分享</button>
</view>
</scroll-view>
...
...
@@ -44,6 +43,7 @@
uni.shareWithSystem({
audioPaths: [path1, path2],
type:'audio',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -66,7 +66,8 @@
const path2 : string = "/static/filemanager/11.txt.br";
uni.shareWithSystem({
filePaths: [path1, path2],
filePaths: [path1, path2],
type:'file',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -87,7 +88,8 @@
const path1 : string = "/static/filemanager/to.zip";
uni.shareWithSystem({
filePaths: [path1],
filePaths: [path1],
type:'file',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -109,7 +111,8 @@
const path2 : string = "/static/filemanager/1.txt.br";
uni.shareWithSystem({
filePaths: [path1, path2],
filePaths: [path1, path2],
type:'file',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -130,7 +133,8 @@
const path1 : string = "/static/test-audio/ForElise.mp3";
uni.shareWithSystem({
audioPaths: [path1],
audioPaths: [path1],
type:'audio',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -152,7 +156,8 @@
const path2 : string = "/static/test-audio/ForElise.mp3";
uni.shareWithSystem({
audioPaths: [path1, path2],
audioPaths: [path1, path2],
type:'audio',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -174,7 +179,8 @@
const path2 : string = "/static/test-video/10second-demo1.mp4";
uni.shareWithSystem({
videoPaths: [path1, path2],
videoPaths: [path1, path2],
type:'video',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -195,7 +201,8 @@
uni.hideToast()
const path1 : string = "/static/test-video/10second-demo.mp4";
uni.shareWithSystem({
videoPaths: [path1],
videoPaths: [path1],
type:'video',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -218,7 +225,8 @@
const path2 : string = "/static/test-video/10second-demo.mp4";
uni.shareWithSystem({
videoPaths: [path1, path2],
videoPaths: [path1, path2],
type:'video',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -241,7 +249,8 @@
uni.chooseVideo({
success(res) {
uni.shareWithSystem({
videoPaths: [res.tempFilePath],
videoPaths: [res.tempFilePath],
type:'video',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -263,7 +272,8 @@
shareText() {
uni.hideToast()
uni.shareWithSystem({
summary: this.summary,
summary: this.summary,
type:'text',
success(res) {
console.log('Shared----------------------------success')
},
...
...
@@ -281,7 +291,8 @@
},
shareLink() {
uni.hideToast()
uni.shareWithSystem({
uni.shareWithSystem({
type:'text',
href: 'https://uniapp.dcloud.io',
success(res) {
console.log('Shared----------------------------success')
...
...
@@ -298,29 +309,11 @@
}
})
},
shareErrorLink() {
uni.hideToast()
uni.shareWithSystem({
href: 'htp:11',
success(res) {
console.log('Shared----------------------------success')
},
fail(res) {
console.log('Share failed, ' + "res.errCode =" + res.errCode + '---res.errMsg= ' + res.errMsg)
uni.showToast({
icon: "error",
title: "errorCode=" + res.errCode
})
},
complete(res) {
}
})
},
sharePrivateImg() {
uni.hideToast()
const imageSrc : string = "/static/test-image/logo.gif";
uni.shareWithSystem({
uni.shareWithSystem({
type:'image',
imageUrl: imageSrc,
success(res) {
console.log('Shared----------------------------success')
...
...
@@ -343,7 +336,8 @@
uni.hideToast()
const imageSrc : string = "/static/test-image/logo.jpg11";
uni.shareWithSystem({
imageUrl: imageSrc,
imageUrl: imageSrc,
type:'image',
success(res) {
console.log('Shared----------------------------success')
// 分享完成,请注意此时不一定是成功分享
...
...
@@ -369,10 +363,11 @@
let imageUrlList : string[] = Array()
imageUrlList.push(errorImageSrc2)
imageUrlList.push(imageSrc)
imageUrlList.push(errorImageSrc1)
//
imageUrlList.push(errorImageSrc1)
uni.shareWithSystem({
imagePaths: imageUrlList,
imagePaths: imageUrlList,
type:'image',
success(res) {
console.log('Shared----------------------------success')
// 分享完成,请注意此时不一定是成功分享
...
...
@@ -399,7 +394,8 @@
imageUrlList.push(errorImageSrc1)
imageUrlList.push(errorImageSrc2)
uni.shareWithSystem({
imagePaths: imageUrlList,
imagePaths: imageUrlList,
type:'image',
success(res) {
console.log('Shared----------------------------success')
// 分享完成,请注意此时不一定是成功分享
...
...
@@ -424,7 +420,8 @@
uni.shareWithSystem({
summary: this.summary,
href: 'https://uniapp.dcloud.io',
imagePaths: imageUrlList,
imagePaths: imageUrlList,
type:'image',
success(res) {
console.log('Shared----------------------------success')
// 分享完成,请注意此时不一定是成功分享
...
...
@@ -452,7 +449,8 @@
uni.shareWithSystem({
// summary: "aa",
// href: 'https://uniapp.dcloud.io',
imagePaths: e.tempFilePaths,
imagePaths: e.tempFilePaths,
type:'image',
success(res) {
console.log('Shared----------------------------success')
// 分享完成,请注意此时不一定是成功分享
...
...
@@ -478,7 +476,8 @@
{
success: function (res) {
uni.shareWithSystem({
imageUrl: res.tempFilePath,
imageUrl: res.tempFilePath,
type:'image',
success(res) {
console.log('Shared----------------------------success')
// 分享完成,请注意此时不一定是成功分享
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录