当前位置: 首页 > 文档资料 > MPX 中文文档 >

条件渲染

优质
小牛编辑
132浏览
2023-12-01

Mpx中的条件渲染与原生小程序中完全一致,详情可以查看这里

简单示例如下:

<template>
  <view class="container">
    <!-- 通过 wx:if 的语法来控制需要渲染的元素 -->
    <view wx:if="{{ score > 90 }}"> A </view>
    <view wx:elif="{{ score > 60 }}"> B </view>
    <view wx:else> C </view>

    <!-- 通过 wx:show 来控制元素的显示隐藏-->
    <view wx:show="{{ score > 90 }}"> very good! <view>
  </view>
</template>

<script>
  import { createPage } from '@mpxjs/core'

  createPage({
    data: {
      score: 80
    }
  })
</script>