codecamp

MorJS aApp/wApp基础使用

aApp / wApp 的第一个参数 options 和微信/支付宝小程序的 App 一致,具体使用请参考小程序文档:

import { aApp } from '@morjs/core'

aApp({
  onLaunch() {
    console.log('当小程序初始化完成时触发,全局只触发一次')
  },
  onShow() {
    console.log('当小程序启动,或从后台进入前台显示时触发')
  },
  onHide() {
    console.log('当当前页面被隐藏时触发,例如跳转、按下设备 Home 键离开')
  },
  onError() {
    console.log('当小程序发生 js 错误时触发')
  }
})

aApp / wApp 的第二个参数 solution 可以提供业务自身业务域的运行时 solution 或运行时插件 runtime-plugin

import { aApp } from '@morjs/core'
import SolutionXXX from 'mor-runtime-solution-xxx'
import PluginXXX from 'mor-runtime-plugin-xxx'

aApp(
  {
    onLaunch() {
      console.log('当小程序初始化完成时触发,全局只触发一次')
    }
  },
  [
    SolutionXXX(),
    () => {
      return {
        plugins: [new PluginXXX()]
      }
    }
  ]
)


MorJS 扩展能力使用
MorJS aPage/wPage基础使用
温馨提示
下载编程狮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; }