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

2020/5/2 8:02:38

本文主要是介绍uniapp针对openinstall无法统计到注册量的问题解决方案及demo,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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

http://img2.sycdn.imooc.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>


代码片段








这篇关于uniapp针对openinstall无法统计到注册量的问题解决方案及demo的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程