A preview error may have occurred. Switch to the Log tab to view details.
·
我们在学习鸿蒙应用开发的UIAbility内页面间的跳转内容的时候会遇到页面无法跳转的问题。并伴随标题的error报错
@Entry
@Component
struct Index {
build() {
Column({ space: CommonConstants.COLUMN_SPACE }) {
//UIAbility内页面间的跳转
Button('Next').onClick(() => {
router.pushUrl({
url: 'pages/Second',
params: {
src: "来自index",
msg: "message"
}
})
})
}
.width(CommonConstants.FULL_LENGTH)
.height(CommonConstants.FULL_LENGTH)
.backgroundColor($r('app.color.page_background'))
}
}
原因可能如下:
我们新建的pages/Second.ets页面是需要注册的,如下
更多推荐
已为社区贡献1条内容
所有评论(0)