小程序
小游戏
企业微信
微信支付
扫描小程序码分享
怎么判断是否传递了slot到组件里呢,想在组件里判断有这个slot了就显示,没有了就显示别的内容。能支持吗?
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
同问,希望能像支付宝小程序那样做如下支持
<view a:if="{{$slots.$default}}" class="am-input-label">
<slot />
</view>
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你这个也没说如何使用呀,不是说 select 只可以选 id / class 等属性么,如何选择 slot 相关内容?
是啊,还是没看懂,vue可以有this.$slots方法获得slot内容来判断是否为空,小程序不知道,想替换暂时我只能从 父组件传递一个属性了
你可以看看这部分
https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/relations.html#%E5%AE%9A%E4%B9%89%E5%92%8C%E4%BD%BF%E7%94%A8%E7%BB%84%E4%BB%B6%E9%97%B4%E5%85%B3%E7%B3%BB
你好可以使用wx.createSelectorQuery()这个api。https://developers.weixin.qq.com/miniprogram/dev/api/wxml-nodes-info.html#nodesreffieldsfieldscallback
用的是<view slot="foot">test</view>这个传递到组件中能用wx.createSelectorQuery()获取slot这个属性吗
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
同问,希望能像支付宝小程序那样做如下支持
<view a:if="{{$slots.$default}}" class="am-input-label">
<slot />
</view>
你这个也没说如何使用呀,不是说 select 只可以选 id / class 等属性么,如何选择 slot 相关内容?
是啊,还是没看懂,vue可以有this.$slots方法获得slot内容来判断是否为空,小程序不知道,想替换暂时我只能从 父组件传递一个属性了
你可以看看这部分
https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/relations.html#%E5%AE%9A%E4%B9%89%E5%92%8C%E4%BD%BF%E7%94%A8%E7%BB%84%E4%BB%B6%E9%97%B4%E5%85%B3%E7%B3%BB
你好可以使用wx.createSelectorQuery()这个api。https://developers.weixin.qq.com/miniprogram/dev/api/wxml-nodes-info.html#nodesreffieldsfieldscallback
用的是<view slot="foot">test</view>这个传递到组件中能用wx.createSelectorQuery()获取slot这个属性吗