Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
e59580e0
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
6007
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看板
提交
e59580e0
编写于
7月 13, 2024
作者:
W
wanganxp
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
更新video和webview示例
上级
3e5b78a9
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
77 addition
and
72 deletion
+77
-72
pages/component/video/video-format.uvue
pages/component/video/video-format.uvue
+69
-70
pages/component/video/video.uvue
pages/component/video/video.uvue
+2
-1
pages/component/web-view/web-view.uvue
pages/component/web-view/web-view.uvue
+6
-1
未找到文件。
pages/component/video/video-format.uvue
浏览文件 @
e59580e0
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<!-- #ifdef APP -->
<!-- #ifdef APP -->
<scroll-view class="page-scroll-view">
<scroll-view class="page-scroll-view">
<!-- #endif -->
<!-- #endif -->
<page-head
:title="title
"></page-head>
<page-head
title="video-format
"></page-head>
<view class="uni-padding-wrap uni-common-mt">
<view class="uni-padding-wrap uni-common-mt">
<view class="uni-title">
<view class="uni-title">
<text class="uni-title-text">支持的视频格式示例</text>
<text class="uni-title-text">支持的视频格式示例</text>
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
</view>
</view>
<view v-for="(item,index) in notSupportFormats" :key="index">
<view v-for="(item,index) in notSupportFormats" :key="index">
<text class="uni-subtitle-text">{{item.format}}</text>
<text class="uni-subtitle-text">{{item.format}}</text>
<video :id="'video-' + item.format" class="video" :src="item.src" :controls="true" :direction="-90"></video>
<video :id="'video-' + item.format"
:ref="'videoRef-' + item.format"
class="video" :src="item.src" :controls="true" :direction="-90"></video>
</view>
</view>
</view>
</view>
<!-- #ifdef APP -->
<!-- #ifdef APP -->
...
@@ -25,17 +25,12 @@
...
@@ -25,17 +25,12 @@
<!-- #endif -->
<!-- #endif -->
</template>
</template>
<script>
<script
setup
>
type VideoFormat = {
type VideoFormat = {
format : string
format : string
src : string
src : string
}
}
let supportFormats = ref([
export default {
data() {
return {
title: 'video-format',
supportFormats: [
// TODO web本地运行时本地服务返回的content-type不对,导致本地视频无法播放。此外web端原生video不支持flv、m3u8、avi格式,但是和app端相比多了ogg格式的支持
// TODO web本地运行时本地服务返回的content-type不对,导致本地视频无法播放。此外web端原生video不支持flv、m3u8、avi格式,但是和app端相比多了ogg格式的支持
{
{
format: 'mp4',
format: 'mp4',
...
@@ -75,8 +70,9 @@
...
@@ -75,8 +70,9 @@
format: '错误路径',
format: '错误路径',
src: 'https://www.dcloud.net.cn/errorpath.mp4'
src: 'https://www.dcloud.net.cn/errorpath.mp4'
},
},
] as Array<VideoFormat>,
] as Array<VideoFormat>)
notSupportFormats: [
let notSupportFormats =ref([
// #ifndef WEB
// #ifndef WEB
{
{
format: 'ogg',
format: 'ogg',
...
@@ -87,20 +83,23 @@
...
@@ -87,20 +83,23 @@
format: 'avi',
format: 'avi',
src: 'https://qiniu-web-assets.dcloud.net.cn/video/sample/2minute-demo.avi'
src: 'https://qiniu-web-assets.dcloud.net.cn/video/sample/2minute-demo.avi'
}
}
] as Array<VideoFormat>,
] as Array<VideoFormat>)
// 自动化测试
isError: false
let isError = false // 自动化测试
}
},
const onError = (format : string, e : UniVideoErrorEvent) => {
methods: {
onError: function (format : string, e : UniVideoErrorEvent) {
console.log(format + ":" + JSON.stringify(e));
console.log(format + ":" + JSON.stringify(e));
if (format != "错误路径") {
if (format != "错误路径") {
this.isError = true;
isError = true;
}
}
}
}
}
}
onReady(() => {
// const v = uni.createVideoContext("video-mp4",getCurrentInstance()!.proxy!)
// v?.play()
})
defineExpose({isError})
</script>
</script>
<style>
<style>
...
...
pages/component/video/video.uvue
浏览文件 @
e59580e0
...
@@ -90,7 +90,8 @@
...
@@ -90,7 +90,8 @@
import { ItemType } from '@/components/enum-data/enum-data';
import { ItemType } from '@/components/enum-data/enum-data';
export default {
export default {
onReady() {
onReady() {
this.videoContext = uni.createVideoContext('video', this);
this.videoContext = uni.createVideoContext('video');
// this.videoContext = uni.createVideoContext('video', this);
},
},
data() {
data() {
return {
return {
...
...
pages/component/web-view/web-view.uvue
浏览文件 @
e59580e0
...
@@ -49,6 +49,7 @@
...
@@ -49,6 +49,7 @@
}
}
},
},
webviewContext: null as WebviewContext | null,
webviewContext: null as WebviewContext | null,
webviewElement: null as UniWebViewElement | null,
loadError: false,
loadError: false,
horizontalScrollBarAccess: true,
horizontalScrollBarAccess: true,
verticalScrollBarAccess: true,
verticalScrollBarAccess: true,
...
@@ -65,7 +66,10 @@
...
@@ -65,7 +66,10 @@
onReady() {
onReady() {
// #ifdef APP
// #ifdef APP
// TODO web 实现createWebviewContext
// TODO web 实现createWebviewContext
this.webviewContext = uni.createWebviewContext('web-view', this)
this.webviewContext = uni.createWebviewContext('web-view',this)
this.webviewElement = uni.getElementById('web-view') as UniWebViewElement //推荐使用element,功能更丰富
// console.log('url: ',this.webviewElement?.getAttribute("src"));
// this.webviewElement?.setAttribute("src","https://ext.dcloud.net.cn/")
// #endif
// #endif
},
},
methods: {
methods: {
...
@@ -77,6 +81,7 @@
...
@@ -77,6 +81,7 @@
},
},
reload() {
reload() {
this.webviewContext?.reload();
this.webviewContext?.reload();
// this.webviewElement?.reload();
},
},
stop() {
stop() {
this.webviewContext?.stop();
this.webviewContext?.stop();
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录