中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何为WindowStage的主窗口加载一个页面?
微信扫码分享
onWindowStageCreate(windowStage: window.WindowStage): void { //加载pages/Index页面,该路径需添加到工程的main_pages.json文件中。 windowStage.loadContent('pages/Index', (err) => { 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.'); }); }