提交 0cdc17f2 编写于 作者: E ester.zhou

update docs

Signed-off-by: Nester.zhou <ester.zhou@huawei.com>
上级 5625145c
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
## Modules to Import ## Modules to Import
``` ```ts
import deviceInfo from '@ohos.deviceInfo' import deviceInfo from '@ohos.deviceInfo'
``` ```
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
## Modules to Import ## Modules to Import
``` ```ts
import parameter from '@ohos.systemParameter' import parameter from '@ohos.systemParameter'
``` ```
...@@ -34,7 +34,7 @@ Obtains the value of the attribute with the specified key. ...@@ -34,7 +34,7 @@ Obtains the value of the attribute with the specified key.
**Example** **Example**
``` ```ts
try { try {
var info = parameter.getSync("test.parameter.key"); var info = parameter.getSync("test.parameter.key");
console.log(JSON.stringify(info)); console.log(JSON.stringify(info));
...@@ -61,7 +61,7 @@ Obtains the value of the attribute with the specified key. This API uses an asyn ...@@ -61,7 +61,7 @@ Obtains the value of the attribute with the specified key. This API uses an asyn
**Example** **Example**
``` ```ts
try { try {
parameter.get("test.parameter.key", function (err, data) { parameter.get("test.parameter.key", function (err, data) {
if (err == undefined) { if (err == undefined) {
...@@ -93,7 +93,7 @@ Obtains the value of the attribute with the specified key. This API uses an asyn ...@@ -93,7 +93,7 @@ Obtains the value of the attribute with the specified key. This API uses an asyn
**Example** **Example**
``` ```ts
try { try {
parameter.get("test.parameter.key", "default", function (err, data) { parameter.get("test.parameter.key", "default", function (err, data) {
if (err == undefined) { if (err == undefined) {
...@@ -131,7 +131,7 @@ Obtains the value of the attribute with the specified key. This API uses a promi ...@@ -131,7 +131,7 @@ Obtains the value of the attribute with the specified key. This API uses a promi
**Example** **Example**
``` ```ts
try { try {
var p = parameter.get("test.parameter.key"); var p = parameter.get("test.parameter.key");
p.then(function (value) { p.then(function (value) {
...@@ -162,7 +162,7 @@ Sets a value for the attribute with the specified key. ...@@ -162,7 +162,7 @@ Sets a value for the attribute with the specified key.
**Example** **Example**
``` ```ts
try { try {
parameter.setSync("test.parameter.key", "default"); parameter.setSync("test.parameter.key", "default");
}catch(e){ }catch(e){
...@@ -189,7 +189,7 @@ Sets a value for the attribute with the specified key. This API uses an asynchro ...@@ -189,7 +189,7 @@ Sets a value for the attribute with the specified key. This API uses an asynchro
**Example** **Example**
``` ```ts
try { try {
parameter.set("test.parameter.key", "testValue", function (err, data) { parameter.set("test.parameter.key", "testValue", function (err, data) {
if (err == undefined) { if (err == undefined) {
...@@ -226,7 +226,7 @@ Sets a value for the attribute with the specified key. This API uses a promise t ...@@ -226,7 +226,7 @@ Sets a value for the attribute with the specified key. This API uses a promise t
**Example** **Example**
``` ```ts
try { try {
var p = para.set("test.parameter.key", "testValue"); var p = para.set("test.parameter.key", "testValue");
p.then(function (value) { p.then(function (value) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册