1# getContext 2 3The **getContext** API enables you to obtain the context of the ability (either UIAbilityContext or ExtensionContext) on the current page. 4 5> **NOTE** 6> - This API is supported since API version 9. 7> - This API applies only to the stage model. 8 9getContext(component?: Object):Context 10 11**Parameters** 12 13| Name| Type | Mandatory| Description | 14| ------ | ----------- | ---- | ------------------------------- | 15| component | Object | No | Ability instance. If no component is passed in or the passed-in parameter type is invalid, the default context is returned. The default context is the context obtained by tracing the call chain of the API. If this API is used in an asynchronous callback or not initially called on the current page, the context of the instance may fail to be traced. In this case, **undefined** is returned. | 16 17**Return value** 18 19| Type| Description | 20| ------ | ------------------------------- | 21| [Context](../../application-models/application-context-stage.md) | Context of the ability. The context type depends on the ability type. For example, if this API is called on a page of the UIAbility, the return value type is UIAbilityContext; if this API is called on a page of the ExtensionAbility, the return value type is ExtensionContext. | 22 23**Example** 24 25Load a page by calling **windowStage.loadContent** in the UIAbility. 26 27```ts 28// EntryAbility.ts 29import AbilityConstant from '@ohos.app.ability.AbilityConstant'; 30import hilog from '@ohos.hilog'; 31import UIAbility from '@ohos.app.ability.UIAbility'; 32import Want from '@ohos.app.ability.Want'; 33import window from '@ohos.window'; 34 35export default class EntryAbility extends UIAbility { 36 onCreate(want: Want, launchParam: AbilityConstant.LaunchParam) { 37 hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate'); 38 } 39 40 onDestroy() { 41 hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy'); 42 } 43 44 onWindowStageCreate(windowStage: window.WindowStage) { 45 hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate'); 46 47 windowStage.loadContent('pages/Index', (err, data) => { 48 if (err.code) { 49 hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? ''); 50 return; 51 } 52 hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? ''); 53 }); 54 } 55 56 onWindowStageDestroy() { 57 hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy'); 58 } 59 60 onForeground() { 61 hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground'); 62 } 63 64 onBackground() { 65 hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground'); 66 } 67} 68``` 69In **Index.ets**, **getContext** is used to obtain the context. In this example, the return value type is UIAbilityContext. 70 71```ts 72//pages/Index.ets 73@Entry 74@Component 75struct Index { 76 @State message: string = 'Hello World' 77 78 build() { 79 Row() { 80 Column() { 81 Text(this.message) 82 .fontSize(50) 83 .fontWeight(FontWeight.Bold) 84 .onClick(() => { 85 let context : Context = getContext(this) as Context 86 console.info("CacheDir:" + context.cacheDir) 87 }) 88 } 89 .width('100%') 90 } 91 .height('100%') 92 } 93} 94``` 95