小程序
小游戏
企业微信
微信支付
扫描小程序码分享
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
我的代码没有问题,就是之前可以正常点击 现在就不行了,请问有知道什么原因的吗
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
您好,我现在遇到一个问题 TypeError: Cannot read property 'addEventListener' of null 报这个错 点击没反应 请问有遇到过吗
是测试的所有手机都不行么?跳转的小程序得是线上的小程序
参考代码,username参数一定要填写正确,之前也是和你一样的问题,调试好长时间才发现username参数写错了。
<wx-open-launch-weapp id="launch-btn" username="gh_xxx" path="/pages/index/index"> <template> <style> button { width: 200px; height: 45px; text-align: center; font-size: 17px; display: block; margin: 0 auto; padding: 8px 24px; border: none; border-radius: 4px; background-color: #07c160; color: #fff; } </style> <button>打开小程序</button> </template> </wx-open-launch-weapp>
贴代码,上报错
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
我的代码没有问题,就是之前可以正常点击 现在就不行了,请问有知道什么原因的吗
您好,我现在遇到一个问题 TypeError: Cannot read property 'addEventListener' of null 报这个错 点击没反应 请问有遇到过吗
是测试的所有手机都不行么?跳转的小程序得是线上的小程序
参考代码,username参数一定要填写正确,之前也是和你一样的问题,调试好长时间才发现username参数写错了。
<wx-open-launch-weapp id="launch-btn" username="gh_xxx" path="/pages/index/index"> <template> <style> button { width: 200px; height: 45px; text-align: center; font-size: 17px; display: block; margin: 0 auto; padding: 8px 24px; border: none; border-radius: 4px; background-color: #07c160; color: #fff; } </style> <button>打开小程序</button> </template> </wx-open-launch-weapp>
贴代码,上报错
<wx-open-launch-weapp id="launch-btn" username="gh_f8af170f0cf0" path="pages/authcenter/authcenter">
<template>
<style>.btn { padding: 12px }</style>
<button class="btn">打开小程序</button>
</template>
</wx-open-launch-weapp>
<script type='text/wxtag-template'>
var btn = document.getElementById('launch-btn');
btn.addEventListener('launch', function (e) {
console.log('success');
});
btn.addEventListener('error', function (e) {
console.log('fail', e.detail);
});
</script>
</rt-card>