小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如上图,在开发者工具中这三个图标正常显示没问题。但是我的手机上测试就不能显示了。希望可以解决这个问题
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
我也遇到了 ,老哥 你这里解决了吗
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
<!--index.wxml-->
<view class="container">
<!--头部样式,包括用户和设置-->
<view class="head">
<!--用户-->
<view class="userinfo">
<button wx:if="{{!hasUserInfo && canIUse}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 获取头像昵称 </button>
<block wx:else>
<image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" mode="cover"></image>
<text class="userinfo-nickname">{{userInfo.nickName}}</text>
</block>
</view>
<!--设置-->
<view class="setting">
<!--出问题的部分image标签-->
<image src="../../imgs/设置.svg"></image>
<!--目录部分-->
<view class="shelfs">
<view class="shelf" bindtap="toshelf">
<image src="../../imgs/最近浏览.svg"></image>
<view class="shelf add">
<image src="../../imgs/添加.svg"></image>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
我也遇到了 ,老哥 你这里解决了吗
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
<!--index.wxml-->
<view class="container">
<!--头部样式,包括用户和设置-->
<view class="head">
<!--用户-->
<view class="userinfo">
<button wx:if="{{!hasUserInfo && canIUse}}" open-type="getUserInfo" bindgetuserinfo="getUserInfo"> 获取头像昵称 </button>
<block wx:else>
<image bindtap="bindViewTap" class="userinfo-avatar" src="{{userInfo.avatarUrl}}" mode="cover"></image>
<text class="userinfo-nickname">{{userInfo.nickName}}</text>
</block>
</view>
<!--设置-->
<view class="setting">
<!--出问题的部分image标签-->
<image src="../../imgs/设置.svg"></image>
</view>
</view>
<!--目录部分-->
<view class="shelfs">
<view class="shelf" bindtap="toshelf">
<!--出问题的部分image标签-->
<image src="../../imgs/最近浏览.svg"></image>
</view>
<view class="shelf add">
<!--出问题的部分image标签-->
<image src="../../imgs/添加.svg"></image>
</view>
</view>
</view>