继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

uniapp针对openinstall无法统计到注册量的问题解决方案及demo

卓伊凡
关注TA
已关注
手记 16
粉丝 3
获赞 15

uniapp针对openinstall无法统计到注册量的问题解决方案及demo

http://img2.mukewang.com/5eabf9dd00010c4203410643.jpg


这个是与openinstall官方成员一起解决掉的 bug问题,因为原生SDK插件支持带来的相关问题。


由于注册统计代码  放入非app.vue 全局文件而无法引入插件配置导致的问题。


这是最后解决方案。


template>
<view class="content">
<image class="logo" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
</view>
<button v-on:click="testRegister">测试注册</button>
</view>
</template>

<script>
export default { 
data() {
return {
title: 'Hello'
}
},
onLoad() {

},
methods: {
testRegister:function(even){
console.log('button click')
const openinstall = uni.requireNativePlugin('openinstall-plugin');
openinstall.reportRegister();
}
},
};

</script>

<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}

.text-area {
display: flex;
justify-content: center;
}

.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>


代码片段






打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP

热门评论

uniapp集成时,如果需要在app.vue之外的其他页面调用方法时,需先调用const openinstall = uni.requireNativePlugin('openinstall-plugin');然后在调用其他需要的方法即可,这不是bug,只是常规的写法而已

查看全部评论