中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何打开用户的账号中心?
微信扫码分享
import { extendService } from '@kit.AccountKit'; import { hilog } from '@kit.PerformanceAnalysisKit'; @Entry @Component struct Index { build() { Column() { Button("打开账号中心").onClick(() => { try { extendService.startAccountCenter(getContext(this), (err) => { if (err) { hilog.error(0x0000, 'testTag', 'startAccountCenterWithCallback fail,error: %{public}s', JSON.stringify(err)); return; } hilog.info(0x0000, 'testTag', 'startAccountCenterWithCallback success'); }); } catch (error) { hilog.error(0x0000, 'testTag', 'startAccountCenterWithCallback fail,error: %{public}s', JSON.stringify(error)); } }) } .width('100%') .height('100%') .justifyContent(FlexAlign.Center) } }