codecamp

MorJS 代码维度 默认注入的变量

  • namemor.config.ts 中的每项配置的 name
  • [name]: true (配置的 name 会转成一个 key)
    • 例如: name: 'ali',那么就会有一个 ali: true,主要用于 ifdef 的场景
  • production 是否是生产环境的配置,生产环境下默认为 true,开发环境下默认为 undefined
  • targetmor.config.ts 中的每项配置的 target
  • [target]: true (配置中的 target 会自动转换成为一个 key)
    • 例如:target: 'alipay',那么就会有一个 alipay: true,主要用于 ifdef 的场景

例如:

当用户配置(mor.config.ts)为如下内容时:

import { defineConfig } from '@morjs/cli'
export default defineConfig([
  {
    name: 'ali',
    mode: 'production',
    target: 'alipay'
  }
])

条件编译的上下文会自动注入如下变量:

{
  name: 'ali',
  ali: true,
  production: true,
  target: 'alipay',
  alipay: true
}


MorJS 代码维度 尚未支持的文件类型
MorJS 代码维度 自定义条件编译变量
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

MorJS 指南

MorJS 基础用法

MorJS 配置

MorJS 编译相关配置

MorJS 进阶用法

MorJS Web开发

MorJS Web开发介绍

MorJS Web开发快速上手

MorJS Tabbar IOS 小黑条适配开关

MorJS 社区

MorJS 规范

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }