js-apis-settings.md 4.2 KB
Newer Older
E
add doc  
ester.zhou 已提交
1 2
# Settings

E
ester.zhou 已提交
3
> **NOTE**<br>
E
add doc  
ester.zhou 已提交
4 5 6 7 8 9 10 11
> The initial APIs of this module are supported since API version 8. Updates will be marked with a superscript to indicate their earliest API version.


This module provides APIs for setting data items.


## Modules to Import

L
lvxiaoqiang 已提交
12
```typescript
E
add doc  
ester.zhou 已提交
13 14 15 16 17
import settings from '@ohos.settings';
```



L
lvxiaoqiang 已提交
18
## settings.getUriSync
E
add doc  
ester.zhou 已提交
19

L
lvxiaoqiang 已提交
20
getUriSync(name: string): string
E
add doc  
ester.zhou 已提交
21 22 23

Obtains the URI of a data item.

E
esterzhou 已提交
24 25
**System capability**: SystemCapability.Applictaions.settings.Core

E
ester.zhou 已提交
26
**Parameters**
E
add doc  
ester.zhou 已提交
27

E
ester.zhou 已提交
28 29 30
| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| name | string | Yes| Name of the target data item. Data items can be classified as follows:<br> <ul><li>Existing data items in the database, for example:<br></li> <ul><li>Brightness: 'settings.screen.brightness'<br> </li>  <li>Time format: 'settings.time.format'<br> </li></ul> <li>Custom data items</li></ul>|
E
add doc  
ester.zhou 已提交
31

E
ester.zhou 已提交
32 33 34 35 36 37 38 39 40 41 42 43
**Return value**

| Type| Description|
| -------- | -------- |
| string | URI of the data item.|

**Example**

```typescript
 // Obtain the URI of a data item.
 let urivar = settings.getUriSync('settings.screen.brightness');  
```
E
add doc  
ester.zhou 已提交
44 45


L
lvxiaoqiang 已提交
46
## settings.getValueSync
E
add doc  
ester.zhou 已提交
47

L
lvxiaoqiang 已提交
48
getValueSync(dataAbilityHelper: DataAbilityHelper, name: string, defValue: string): string
E
add doc  
ester.zhou 已提交
49 50 51

Obtains the value of a data item.

E
esterzhou 已提交
52 53
**System capability**: SystemCapability.Applictaions.settings.Core

E
ester.zhou 已提交
54 55 56 57 58 59 60 61 62 63 64 65
**Parameters**
| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| dataAbilityHelper | [DataAbilityHelper](js-apis-dataAbilityHelper.md) | Yes| **DataAbilityHelper** class.|
| name | string | Yes| Name of the target data item. Data items can be classified as follows:<br> <ul><li>Existing data items in the database, for example:<br></li> <ul><li>Brightness: 'settings.screen.brightness'<br> </li>  <li>Time format: 'settings.time.format'<br> </li></ul> <li>Custom data items</li></ul>|
| defValue | string | Yes| Default value This parameter is user-defined. If it is not found in the database, the default value is returned.|

**Return value**

| Type| Description|
| -------- | -------- |
| string | Value of the data item.|
E
add doc  
ester.zhou 已提交
66

E
ester.zhou 已提交
67
**Example**
E
add doc  
ester.zhou 已提交
68

E
ester.zhou 已提交
69
```typescript
L
lvxiaoqiang 已提交
70
  import featureAbility from '@ohos.ability.featureAbility';
E
esterzhou 已提交
71

E
ester.zhou 已提交
72 73 74 75 76 77
// Obtain the value of 'settings.screen.brightness' (this data item already exists in the database).
let brightness = 'settings.screen.brightness';
let uri = settings.getUriSync(brightness);
let helper = featureAbility.acquireDataAbilityHelper(uri);
let value = settings.getValueSync(helper, brightness, '10');
```
E
add doc  
ester.zhou 已提交
78 79


L
lvxiaoqiang 已提交
80
## settings.setValueSync
E
add doc  
ester.zhou 已提交
81

L
lvxiaoqiang 已提交
82
setValueSync(dataAbilityHelper: DataAbilityHelper, name: string, value: string): boolean
E
add doc  
ester.zhou 已提交
83 84

Sets the value of a data item.
E
ester.zhou 已提交
85

L
lvxiaoqiang 已提交
86
If the specified data item exists in the database, the **setValueSync** method updates the value of the data item. If the data item does not exist in the database, the **setValueSync** method inserts the data item into the database.
E
add doc  
ester.zhou 已提交
87

E
esterzhou 已提交
88 89 90
**Required permissions**: ohos.permission.WRITE_SYSTEM_SETTING

**System capability**: SystemCapability.Applictaions.settings.Core
E
add doc  
ester.zhou 已提交
91

E
ester.zhou 已提交
92 93 94 95 96 97 98
**Parameters**

| Name| Type| Mandatory| Description|
| -------- | -------- | -------- | -------- |
| dataAbilityHelper | [DataAbilityHelper](js-apis-dataAbilityHelper.md) | Yes| **DataAbilityHelper** class.|
| name | string | Yes| Name of the target data item. Data items can be classified as follows:<br> <ul><li>Existing data items in the database, for example:<br></li> <ul><li>Brightness: 'settings.screen.brightness'<br> </li>  <li>Time format: 'settings.time.format'<br> </li></ul> <li>Custom data items</li></ul>|
| value | string | Yes| Value of the data item.|
E
add doc  
ester.zhou 已提交
99

E
ester.zhou 已提交
100
**Return value**
E
add doc  
ester.zhou 已提交
101

E
ester.zhou 已提交
102 103 104 105 106 107 108
| Type| Description|
| -------- | -------- |
| boolean | Result indicating whether the value is set successfully. Returns **true** if the value is set successfully; returns **false** otherwise.|

**Example**

```typescript
L
lvxiaoqiang 已提交
109
  import featureAbility from '@ohos.ability.featureAbility';
E
esterzhou 已提交
110

E
ester.zhou 已提交
111 112 113 114 115 116 117
// Update the value of 'settings.screen.brightness'. (As this data item exists in the database, the setValueSync 
   method will update the value of the data item.)
let brightness = 'settings.screen.brightness';
let uri = settings.getUriSync(brightness);
let helper = featureAbility.acquireDataAbilityHelper(uri);
let ret = settings.setValueSync(helper, brightness, '100');
```