鸿蒙项目实战(五):修改项目启用页Page

目录: entry -> src -> main -> ets -> entryability -> EntryAbilityts文件

 

修改 windowStage.loadContent 设置路径 :

windowStage.loadContent('pages/navigations/MainPage', (err, data) => {
      if (err.code) {
        hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? '');
        return;
      }
      hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? '');
    });

相关文档:

指定UIAbility的启动页面

 

posted @ 2024-11-17 23:10  听着music睡  阅读(7)  评论(0编辑  收藏  举报