未验证 提交 fe7a63ea 编写于 作者: O openharmony_ci 提交者: Gitee

!13356 【挑单Monthly1018】【元能力】BaseContext文档优化

Merge pull request !13356 from HuangXW/Monthly1018
# BaseContext
BaseContext抽象类用于表示继承的子类Context是Stage模型还是FA模型。
BaseContext抽象类用于表示继承的子类Context是Stage模型还是FA模型,是所有Context类型的父类
> **说明:**
>
> 本模块首批接口从API version 8 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>
> 本模块首批接口从API version 8 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
**系统能力**:SystemCapability.Ability.AbilityRuntime.Core
......@@ -13,11 +13,16 @@ BaseContext抽象类用于表示继承的子类Context是Stage模型还是FA模
| stageMode | boolean | 是 | 是 | 表示Stage模型还是FA模型。 |
**示例:**
```ts
class MyContext extends BaseContext {
constructor(stageMode) {
this.stageMode = stageMode;
}
}
```
\ No newline at end of file
以Stage模型为例,用户可通过UIAbilityContext访问stageMode字段。
```ts
import UIAbility from '@ohos.app.ability.UIAbility';
class MainAbility extends UIAbility {
onCreate(want, launchParam) {
// MainAbility onCreate, isStageMode: true
console.log("MainAbility onCreate, isStageMode: " + this.context.stageMode);
}
}
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册
新手
引导
客服 返回
顶部