请问这个问题解决了吗?我的也是。本地包打出来是5700,别的开发打出来是2800kb
微信小程序 同一套代码 别人的电脑上预览是没问题的 为什么自己的电脑就主包过大?微信小程序 同一套代码 别人的电脑上预览是没问题的 为什么自己的电脑就主包过大,之前自己更新过mac最新版的系统
2021-07-02找到结论了,2.7版本微信更新了一个参数。增加此参数就可以了。[图片]
急 急 image 组件长按识别太阳码有bug?小程序内,长按某张太阳码图片,没要弹起识别小程序的下拉选项。 但webview页面内的长按,可识别。 微信版本8.0.3 长按识别太阳码 基础版本库2.17.0
2021-05-28苹果手机 长按识别太阳码,好像也有点问题。有些页面可以识别,有些不可以。
急 急 image 组件长按识别二维码有bug?1.安卓手机 微信版本8.0.3 长按识别二维码 基础版本库2.17.0,不显示 (打开对方企业微信名片的功能) 2.苹果手机 微信版本8.0.6 长按识别二维码 基础版本库2.17.0,显示 (打开对方企业微信名片的功能) 两者扫码之后都没有反应
2021-05-27请问楼主这个问题解决了吗?我这里也出现了wx.config dubug为true时,弹框提示内容 "wx-open-launch-app false"。想请教一下楼主。
vue中的wx-open-launch-app 标签里面的内容经常不显示,偶尔却又能正常显示出来?当"打开app"这个按钮显示时,可以正常打开APP,不显示则无效,以下是部分代码<template> <div class="title-box"> <img src="../assets/logo.png" class="logo-icon" /> <button class="open-app" v-show="!isWeChatOpen" @click="openApp">打开App</button> <div class="open-app2" v-show="isWeChatOpen"> <wx-open-launch-app id="launch-btn" :appid="appid" extinfo="" @error="handleErrorFn" @launch="handleLaunchFn" > <script type="text/wxtag-template"> <style>.btn { width: 72px; height: 32px; line-height: 32px; text-align: center; font-size: 12px; color: #2DB7FF; background: #F4F4F4; border-radius: 25px; }</style> <div class="btn">打开APP</div> </script> </wx-open-launch-app> </div> <img v-if="isLoginState" src="../assets/title-login.png" class="title-login-icon" @click="openPersonal" /> <button v-if="!isLoginState" class="open-login" @click="openLogin">登录</button> </div> </template> ///以下是调用的方法 getWechatOpenTag() { shareGetSDK(window.location.href).then(res => { let data = res.data.data var _this = this wx.config({ debug: false, appId: data.appId, timestamp: data.timestamp, nonceStr: data.nonceStr, signature: data.signature, jsApiList: ["onMenuShareAppMessage", "onMenuShareTimeline"], openTagList: ["wx-open-launch-app"] }); wx.ready(function () { // Toast("成功") wx.checkJsApi({ jsApiList: ['wx-open-launch-app'], // 需要检测的JS接口列表,所有JS接口列表见附录2, success: function (res) { console.log('可用') _this.isWeChatOpen = true }, fail: (err) => { console.log(err, '不可用') _this.isWeChatOpen = false } }) }); wx.error(function (res) { // Toast(res) }); }) [图片] wx.config dubug为true时,弹框提示内容 "wx-open-launch-app false"是什么意思呢?
2020-08-28请问,楼主这个问题解决了吗?
wx-open-launch-weapp 无法显示按钮是什么原因?相关配置都正常,vue项目中应用,但是页面中就是无法显示拉起小程序的按钮,拉起app的按钮及功能都正常, 页面链接:https://activity.wandougongzhu.cn/wxdemo.html <div class="btn-item"> <wx-open-launch-weapp style="position:absolute;top:0;left:0;right:0;bottom:0;text-align: center;" id="launch-btn-wx" username="gh_2009800a5713" > <script type="text/wxtag-template"> <style>.btn {width: 200px; height: 40px; text-align: center; line-height: 40px; font-size: 16px; border-radius: 20px; background: #62c655; color:#fff; border: 0;}</style> <button class="btn">打开豌豆公主小程序</button> </script> </wx-open-launch-weapp> </div> <div class="btn-item"> <wx-open-launch-app id="launch-btn" appid="wx44c7c3333f79f26b" style="position:absolute;top:0;left:0;right:0;bottom:0;" > <script type="text/wxtag-template"> <style>.btn {width: 200px; height: 40px; text-align: center; line-height: 40px; font-size: 16px; border-radius: 20px; background: #3579d0; color:#fff; border: 0;}</style> <button class="btn">打开豌豆公主APP</button> </script> </wx-open-launch-app> </div>
2020-08-28楼主,可以参考一下你的代码嘛?我这边使用该标签,页面上不显示。
为什么调用wx-open-launch-weapp的时候ios可以正常显示,微信不会识别标签?我在标签外嵌套了个div,然后安卓微信不正常显示,ios正常,安卓版本7.0.16,测试链接附上https://wx.ihuanxi.cn/kd/washing/local/homePage/Test, 实测安卓不行,ios没问题,引用了jquery的一些方法,控制元素隐藏与展示,附图, 第一张为安卓,第二章为ios, wx.config注册成功没有问题 [图片][图片]
2020-08-28楼主,现在这个解决了吗?方便交流下吗?
小程序内嵌公众文章实现方法最近在开类似手边小程序发布动态功能,可以添加微信公众号文章链接,可以在小程序内嵌,不是用web-view充满整个屏幕,不知道怎么实现,通过后台php抓取content传给小程序用富文本解析样式又不对,不知道有没有好的实现方法[图片]
2019-11-28我也是,这是什么情况啊
appLaunch with an already exist webvi...VM160:1 appLaunch with an already exist webviewId 2报错,网上搜了一下,没找到什么相关问题,有人知道是什么问题吗? [图片]
2018-11-29