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

公眾號
微信公眾號

編程獅公眾號