所有需要路由的页面,或者进行路由操作的当前页面都需要维护到main_pages.json
中
获取路由参数传递过来的参数 router.getParams()
struct ObservedAndObjectLink {
params: any = router.getParams()
build() {
Column({space: 20}){
if (this.params) {
Text(`标题: ${this.params.id}`)
.fontSize(30)
.backgroundColor('#aaa')
}
}
}