Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
unidocs-zh
提交
8e9b6449
unidocs-zh
项目概览
DCloud
/
unidocs-zh
通知
3172
Star
105
Fork
804
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
93
列表
看板
标记
里程碑
合并请求
67
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
unidocs-zh
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
93
Issue
93
列表
看板
标记
里程碑
合并请求
67
合并请求
67
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
8e9b6449
编写于
2月 10, 2023
作者:
Anne_LXM
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
补充视频模拟广告示例
上级
b60178ae
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
152 addition
and
0 deletion
+152
-0
docs/component/ad-error-code.md
docs/component/ad-error-code.md
+152
-0
未找到文件。
docs/component/ad-error-code.md
浏览文件 @
8e9b6449
...
@@ -41,6 +41,158 @@ code|message|
...
@@ -41,6 +41,158 @@ code|message|
1.
使用开发测试广告位,仅适用于开发人员调试,没有广告收益
1.
使用开发测试广告位,仅适用于开发人员调试,没有广告收益
2.
使用视频模拟广告以满足业务流程,没有广告收益。如:每日任务
2.
使用视频模拟广告以满足业务流程,没有广告收益。如:每日任务
**使用视频模拟广告示例**
```
html
<!-- pages/index/index.nvue -->
<template>
<view
class=
"content"
>
<ad-rewarded-video
adpid=
"1507000689"
:loadnext=
"true"
v-slot:default=
"{loading, error}"
@
error=
"onaderror"
>
<button
:disabled=
"loading"
:loading=
"loading"
>
显示广告
</button>
<view
v-if=
"error"
>
{{error}}
</view>
</ad-rewarded-video>
</view>
</template>
<script>
export
default
{
data
()
{
return
{}
},
methods
:
{
onaderror
(
e
)
{
// 广告加载失败
console
.
log
(
"
onaderror:
"
,
e
.
detail
);
if
(
e
.
detail
.
errCode
==
-
5005
)
{
uni
.
navigateTo
({
url
:
'
/pages/adVideo/adVideo
'
,
events
:
{
// 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
onVideoClosed
:
function
(
data
)
{
console
.
log
(
data
);
}
}
})
}
}
}
}
</script>
```
```
html
<!-- pages/adVideo/adVideo.nvue -->
<template>
<view
class=
"container"
>
<video
id=
"myVideo"
:src=
"src"
:autoplay=
"true"
:controls=
"false"
@
ended=
"onfinish"
@
click=
"toLandVideo"
@
timeupdate=
"onTimeUpdate"
class=
"video"
></video>
<view
class=
"close-box"
>
<text
v-if=
"countdown>0"
class=
"close"
>
{{countdown}}s
</text>
<text
v-if=
"showClose"
class=
"close"
@
click=
"closeVideo"
>
X
</text>
</view>
<text
class=
"ad-tip"
>
广告
</text>
</view>
</template>
<script>
export
default
{
data
()
{
return
{
src
:
""
,
//视频地址
showClose
:
false
,
countdown
:
''
,
}
},
onReady
()
{
this
.
videoContext
=
uni
.
createVideoContext
(
'
myVideo
'
)
},
onLoad
()
{
this
.
isFinish
=
false
this
.
isPalying
=
false
},
onShow
()
{
if
(
!
this
.
isFinish
&&
this
.
videoContext
)
this
.
videoContext
.
play
()
},
onBackPress
()
{
return
!
this
.
isFinish
},
methods
:
{
onfinish
(
e
)
{
// console.log("onfinish:" + JSON.stringify(e));
this
.
showClose
=
true
this
.
isFinish
=
true
},
closeVideo
()
{
const
eventChannel
=
this
.
getOpenerEventChannel
();
eventChannel
.
emit
(
'
onVideoClosed
'
,
{
data
:
''
});
uni
.
navigateBack
()
},
toLandVideo
()
{
this
.
videoContext
.
pause
()
uni
.
navigateTo
({
url
:
"
/pages/landVideo/landVideo
"
})
},
onTimeUpdate
(
e
)
{
this
.
countdown
=
parseInt
(
e
.
detail
.
duration
-
e
.
detail
.
currentTime
)
}
}
}
</script>
<style>
.container
{
flex
:
1
;
position
:
relative
;
}
.video
{
flex
:
1
;
}
.close-box
{
top
:
10
rpx
;
right
:
50
rpx
;
position
:
absolute
;
flex-direction
:
row
;
}
.close
{
color
:
#808080
;
font-size
:
50
rpx
;
width
:
100
rpx
;
text-align
:
center
;
}
.ad-tip
{
bottom
:
20
rpx
;
right
:
50
rpx
;
position
:
absolute
;
color
:
#666
;
font-size
:
28
rpx
;
}
</style>
```
```
html
<!-- pages/landVideo/landVideo.vue -->
<template>
<view>
<web-view
src=
"广告落地页url"
></web-view>
</view>
</template>
<script>
export
default
{
data
()
{
return
{}
},
methods
:
{}
}
</script>
```
提示:-5005 时,包含二级错误码,可在下面广告商错误码中找到具体原因
提示:-5005 时,包含二级错误码,可在下面广告商错误码中找到具体原因
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录