t***@xjdm88.com
t***@xjdm88.com
  • 发布:2022-03-25 11:38
  • 更新:2022-03-28 11:39
  • 阅读:300

短视频内容联盟组件之前不支持ios 但是我看最近更新的文档支持 我hbuilder也更新最新版本了 还是不能使用

分类:uni-app

产品分类: uniapp/App

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: win10

HBuilderX类型: 正式

HBuilderX版本号: 3.3.13

手机系统: iOS

手机系统版本号: iOS 12.2

手机厂商: 苹果

手机机型: 苹果6

页面类型: nvue

vue版本: vue2

打包方式: 云端

项目创建方式: HBuilderX

示例代码:

<template>
<view class="content">
<ad-content-page class="ad-content-page" ref="adContentPage" adpid="1111111112" @load="onadload" @error="onaderror"></ad-content-page>
</view>
</template>

<script>
export default {
data() {
return {
title: 'ad-content-page'
}
},
onShow() {
this.$nextTick(() => {
// 需要在页面显示时调用广告组件的 show 方法
this.$refs.adContentPage.show();
})
},
onHide() {
// 需要在页面隐藏时调用广告组件的 hide 方法停止广告内容的声音
this.$refs.adContentPage.hide();
},
methods: {
onadload(e) {
console.log("onload");
},
onaderror(e) {
console.log("onerror");
}
}
}
</script>

<style>
.content {
flex: 1
}

.ad-content-page {
flex: 1
}
</style>

操作步骤:

<template>
<view class="content">
<ad-content-page class="ad-content-page" ref="adContentPage" adpid="1111111112" @load="onadload" @error="onaderror"></ad-content-page>
</view>
</template>

<script>
export default {
data() {
return {
title: 'ad-content-page'
}
},
onShow() {
this.$nextTick(() => {
// 需要在页面显示时调用广告组件的 show 方法
this.$refs.adContentPage.show();
})
},
onHide() {
// 需要在页面隐藏时调用广告组件的 hide 方法停止广告内容的声音
this.$refs.adContentPage.hide();
},
methods: {
onadload(e) {
console.log("onload");
},
onaderror(e) {
console.log("onerror");
}
}
}
</script>

<style>
.content {
flex: 1
}

.ad-content-page {
flex: 1
}
</style>

预期结果:

_this.$refs.adContentPage.show is not a function

实际结果:

_this.$refs.adContentPage.show is not a function

bug描述:

按照该文档 https://uniapp.dcloud.net.cn/component/ad-content-page?id=%e7%ae%80%e4%bb%8b代码运行到hbuilder 依然报错 ios版本是12.2 苹果6 是啥原因 我看文档已经支持ios3.4.2以上的版本

2022-03-25 11:38 负责人:无 分享
已邀请:
DCloud_UNI_Anne

DCloud_UNI_Anne

请用HBuilderX3.4.2+ alpha版本

  • d***@qmzd8.com

    我用HBuildeX 3.4.5-alpha版本同样是报错的

    2022-04-10 11:47

  • DCloud_UNI_Anne

    回复 d***@qmzd8.com: 是nvue页面吗?

    2022-04-11 11:34

该问题目前已经被锁定, 无法添加新回复