中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何获取ApplicationContext?
微信扫码分享
onWindowStageCreate(windowStage: window.WindowStage): void { //获取ApplicationContext let applicationContext = this.context.getApplicationContext(); 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.'); }); }