MorJS 代码维度 #if(判断变量值)

2024-01-17 15:09 更新

js/ts 文件类型

/* #if name == 'wechat' */
console.log('这句话只会在微信上显示')
/* #endif */

/* #if name == 'alipay' */
console.log('这句话只会在支付宝上显示')
/* #endif */

wxss/acss/less/scss 文件类型

.index-page {
  /* #if name == 'wechat' */
  background: red;
  /* #endif */

  /* #if name == 'alipay' */
  background: blue;
  /* #endif */
}

wxml/axml 文件类型

<!-- #if name == 'wechat' -->
<view>只会在微信上显示</view>
<!-- #endif -->

<!-- #if name == 'alipay' -->
<view>只会在支付宝上显示</view>
<!-- #endif -->

jsonc/json5 文件类型

{
  "component": true,
  "usingComponents": {
    // #if name == 'wechat'
    "any-component": "./wechat-any-component",
    // #endif

    // #if name == 'alipay'
    "any-component": "./alipay-any-component",
    // #endif

    "other-component": "./other-component"
  }
}


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号