小程序
小游戏
企业微信
微信支付
扫描小程序码分享
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,1、请注意更新到最新版的开发者工具,下载地址:https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html
2、请确认 wx.config 里有申请开放标签的权限,参考文档:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html
3、如仍未调试成功,请提供具体的appid、代码、报错信息和截图。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
他是用shadow dom包住的这个按钮组件,外部样式完全无法影响以及继承。
对付微信这种阴间玩意儿最好的办法就是,整个透明遮罩层盖你自己按钮上。
<div class="parent"> <button class="button">按钮</button> <div class="wrapper"> <wx-open-subscribe ref={subscription} template={template}> <script type="text/wxtag-template"> <div className="wx-stupid-component" /> </script> <script type="text/wxtag-template" slot="style"> <style>{` .wx-stupid-component { width: 10000px; height: 10000px; } `}</style> </script> </wx-open-subscribe> </div> </div> .parent { position: relative; } .button { height: 100px; width: 30px; } .wrapper { position: absolute; left:0; top: 0; width: 100%; height: 100%; opacity: 0; overflow: hidden; z-index: 1; }
请问你用react写的,标签里自定义的内容能显示吗?
确定不是你找个地方写错了?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,1、请注意更新到最新版的开发者工具,下载地址:https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html
2、请确认 wx.config 里有申请开放标签的权限,参考文档:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html
3、如仍未调试成功,请提供具体的appid、代码、报错信息和截图。
他是用shadow dom包住的这个按钮组件,外部样式完全无法影响以及继承。
对付微信这种阴间玩意儿最好的办法就是,整个透明遮罩层盖你自己按钮上。
<div class="parent"> <button class="button">按钮</button> <div class="wrapper"> <wx-open-subscribe ref={subscription} template={template}> <script type="text/wxtag-template"> <div className="wx-stupid-component" /> </script> <script type="text/wxtag-template" slot="style"> <style>{` .wx-stupid-component { width: 10000px; height: 10000px; } `}</style> </script> </wx-open-subscribe> </div> </div> .parent { position: relative; } .button { height: 100px; width: 30px; } .wrapper { position: absolute; left:0; top: 0; width: 100%; height: 100%; opacity: 0; overflow: hidden; z-index: 1; }
请问你用react写的,标签里自定义的内容能显示吗?
确定不是你找个地方写错了?