小程序
小游戏
企业微信
微信支付
扫描小程序码分享
<view class="fee-item" style="flex-wrap: nowrap;">{{Object.keys(coupon).length > 0 ? coupon.moneyDesc : '暂无可用'}}</view>
如上,很简单的三目运算符,判断coupon是否为空{}来显示不同的标题
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
简单点就 {{coupon && coupon.moneyDesc ? coupon.moneyDesc : '暂无可用'}}
复杂点就用wxs
https://developers.weixin.qq.com/miniprogram/dev/reference/wxs/01wxs-module.html#module-%E5%B1%9E%E6%80%A7
若认为该回答有用,给回答者一个[ 有用 ]吧!!
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
页面上可以用 {{coupon.moneyDesc || '暂无可用'}}
这种可以用wxs解决。还有就是这种判断建议你在js里处理。
https://developers.weixin.qq.com/miniprogram/dev/reference/wxs/01wxs-module.html
{{coupon.moneyDesc?coupon.moneyDesc:'暂无可用'}}
--↓↓👍点击“有用”是回答的动力哦
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
简单点就 {{coupon && coupon.moneyDesc ? coupon.moneyDesc : '暂无可用'}}
复杂点就用wxs
https://developers.weixin.qq.com/miniprogram/dev/reference/wxs/01wxs-module.html#module-%E5%B1%9E%E6%80%A7
若认为该回答有用,给回答者一个[ 有用 ]吧!!
页面上可以用 {{coupon.moneyDesc || '暂无可用'}}
这种可以用wxs解决。还有就是这种判断建议你在js里处理。
https://developers.weixin.qq.com/miniprogram/dev/reference/wxs/01wxs-module.html
{{coupon.moneyDesc?coupon.moneyDesc:'暂无可用'}}
--↓↓👍点击“有用”是回答的动力哦