600字范文,内容丰富有趣,生活中的好帮手!
600字范文 > 【微信小程序】wx:if

【微信小程序】wx:if

时间:2024-04-26 01:49:25

相关推荐

【微信小程序】wx:if

前言

调试基础库 2.12.0开发者工具 1.03.270

wx:for

定义数据

Page({data: {noticeType: 1,},...})

显示通知类型

<text wx:if="{{1==noticeType}}">通知</text>

if… elseif…else

定义数据

Page({data: {noticeType: 1,},...})

显示通知类型

<view class="attrs"><text wx:if="{{1==noticeType}}">通知</text><text wx:elif="{{2==noticeType}}">公告</text><text wx:else>-</text></view>

效果

参考

https://developers./miniprogram/dev/reference/wxml/conditional.html

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。