diff --git a/zh-cn/application-dev/reference/apis/Readme-CN.md b/zh-cn/application-dev/reference/apis/Readme-CN.md index 4c5f786f6875f4c5f88669806d6a0baa1adfb275..a1c8f4130f3a5060e68d1e84b269e735795cd7e4 100755 --- a/zh-cn/application-dev/reference/apis/Readme-CN.md +++ b/zh-cn/application-dev/reference/apis/Readme-CN.md @@ -318,7 +318,7 @@ - [@ohos.settings (设置数据项名称)](js-apis-settings.md) - [@ohos.stationary (设备状态感知框架)](js-apis-stationary.md) - [@ohos.systemCapability (系统能力)](js-apis-system-capability.md) - - [@ohos.systemParameterV9 (系统属性)](js-apis-system-parameterV9.md) + - [@ohos.systemParameterEnhance (系统参数)](js-apis-system-parameterEnhance.md) - [@ohos.thermal (热管理)](js-apis-thermal.md) - [@ohos.update (升级)](js-apis-update.md) - [@ohos.usbManager (USB管理)](js-apis-usbManager.md) diff --git a/zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md b/zh-cn/application-dev/reference/apis/js-apis-system-parameterEnhance.md similarity index 98% rename from zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md rename to zh-cn/application-dev/reference/apis/js-apis-system-parameterEnhance.md index 7f07d9d9bf93e79c6c63acb59f14fed06977398d..a874db108d9df73006a3ec00a493d4ec120d0add 100755 --- a/zh-cn/application-dev/reference/apis/js-apis-system-parameterV9.md +++ b/zh-cn/application-dev/reference/apis/js-apis-system-parameterEnhance.md @@ -1,4 +1,4 @@ -# @ohos.systemParameterV9 (系统属性) +# @ohos.systemParameterEnhance (系统参数) 系统参数(SystemParameter)是为各系统服务提供的简单易用的键值对访问接口,各个系统服务可以定义系统参数来描述该服务的状态信息,或者通过系统参数来改变系统服务的行为。其基本操作原语为get和set,通过get可以查询系统参数的值,通过set可以修改系统参数的值。 详细的系统参数设计原理及定义可参考 @@ -13,7 +13,7 @@ ## 导入模块 ```ts -import systemparameter from '@ohos.systemParameterV9' +import systemparameter from '@ohos.systemParameterEnhance' ``` ## systemparameter.getSync diff --git a/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/changelogs-startup.md b/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/changelogs-startup.md new file mode 100755 index 0000000000000000000000000000000000000000..99fc2b75b359cd013dc8cbafebca697f5f28324f --- /dev/null +++ b/zh-cn/release-notes/changelogs/OpenHarmony_4.0.3.2/changelogs-startup.md @@ -0,0 +1,16 @@ +# 启动子系统JS API变更ChangeLog + +## cl.startup.1 包名变更 + +**变更影响** + +原有的@ohos.systemParameterV9包名将被删除无法再使用,需更换为新的@ohos.systemParameterEnhance包名。 + +**适配指导** + +原有的@ohos.systemParameterV9需要变更为@ohos.systemParameterEnhance,包内接口都不变,示例: + +```js +import @ohos.systemParameterEnhance +``` +