Skip to main content
Version: v3

Page

Start from API_LEVEL 2.0 . Please refer to API_LEVEL.

Register a page in the Mini Program, specify the lifecycle callback for the current page, etc. Each page file must call the Page() constructor only once.

Type

function Page(option: Option): Result

Parameters

Option

PropertyTypeRequiredDefaultValueDescriptionAPI_LEVEL
stateobjectN-A data object mounted on a page instance that can be used to store the state of the current page2.0
onInit(params?: string) => voidN-It is triggered once per page and can be used to initialize the page state. If the page is opened by the relevant method in the router module with params parameters, the params string can be retrieved in the onInit method2.0
build(params?: string) => voidN-Triggered after onInit execution completes, recommended for UI drawing in the build lifecycle2.0
onDestroy() => voidN-The onDestroy lifecycle function is triggered when the page is destroyed2.0

Result

TypeDescription
unknownPage instance

Example

page.js
Page({
state: {
text: 'Hello Zepp OS',
},
onInit() {
console.log('onInit')
},
build() {
console.log('build')
console.log(this.state.text)
},
})