系統屬性
說明:
開發前請熟悉鴻蒙開發指導文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
導入模塊
import parameter from '@ohos.systemParameter'
parameter.getSync
getSync(key: string, def?: string): string
獲取系統屬性Key對應的值。
系統能力: SystemCapability.Startup.SysInfo
參數:
參數名 | 類型 | 必填 | 說明 |
---|---|---|---|
key | string | 是 | 待查詢的系統屬性Key。 |
def | string | 否 | 默認值。 |
返回值:
類型 | 說明 |
---|---|
string | 系統屬性值,若key不存在,返回默認值。若未指定默認值,返回空字符串。 |
示例:
try {
var info = parameter.getSync("test.parameter.key");
console.log(JSON.stringify(info));
}catch(e){
console.log("getSync unexpected error: " + e);
}
parameter.get
get(key: string, callback: AsyncCallback): void
獲取系統屬性Key對應的值。
系統能力: SystemCapability.Startup.SysInfo
參數:
參數名 | 類型 | 必填 | 說明 |
---|---|---|---|
key | string | 是 | 待查詢的系統屬性Key。 |
callback | AsyncCallback | 是 | 回調函數。 |
示例:
try {
parameter.get("test.parameter.key", function (err, data) {
if (err == undefined) {
console.log("get test.parameter.key value success:" + data)
} else {
console.log(" get test.parameter.key value err:" + err.code)
}});
}catch(e){
console.log("get unexpected error: " + e);
}
parameter.get
get(key: string, def: string, callback: AsyncCallback): void
獲取系統屬性Key對應的值。
系統能力: SystemCapability.Startup.SysInfo
參數:
參數名 | 類型 | 必填 | 說明 |
---|---|---|---|
key | string | 是 | 待查詢的系統屬性Key。 |
def | string | 是 | 默認值。 |
callback | AsyncCallback | 是 | 回調函數。 |
示例:
try {
parameter.get("test.parameter.key", "default", function (err, data) {
if (err == undefined) {
console.log("get test.parameter.key value success:" + data)
} else {
console.log(" get test.parameter.key value err:" + err.code)
}
});
}catch(e){
console.log("get unexpected error:" + e)
}
parameter.get
get(key: string, def?: string): Promise
獲取系統屬性Key對應的值。
系統能力: SystemCapability.Startup.SysInfo
參數:
參數名 | 類型 | 必填 | 說明 |
---|---|---|---|
key | string | 是 | 待查詢的系統屬性Key。 |
def | string | 否 | 默認值。 |
返回值:
類型 | 說明 |
---|---|
Promise | Promise示例,用于異步獲取結果。 |
示例:
try {
var p = parameter.get("test.parameter.key");
p.then(function (value) {
console.log("get test.parameter.key success: " + value);
}).catch(function (err) {
console.log("get test.parameter.key error: " + err.code);
});
}catch(e){
console.log("get unexpected error: " + e);
}
parameter.setSync
setSync(key: string, value: string): void
設置系統屬性Key對應的值。
系統能力: SystemCapability.Startup.SysInfo
參數:
參數名 | 類型 | 必填 | 說明 |
---|---|---|---|
key | string | 是 | 待設置的系統屬性Key。 |
value | string | 是 | 待設置的系統屬性值。 |
示例:
try {
parameter.setSync("test.parameter.key", "default");
}catch(e){
console.log("set unexpected error: " + e);
}
parameter.set
set(key: string, value: string, callback: AsyncCallback): void
設置系統屬性Key對應的值。
系統能力: SystemCapability.Startup.SysInfo
參數:
參數名 | 類型 | 必填 | 說明 |
---|---|---|---|
key | string | 是 | 待設置的系統屬性Key。 |
value | string | 是 | 待設置的系統屬性值。 |
callback | AsyncCallback | 是 | 回調函數。 |
示例:
try {
parameter.set("test.parameter.key", "testValue", function (err, data) {
if (err == undefined) {
console.log("set test.parameter.key value success :" + data)
} else {
console.log("set test.parameter.key value err:" + err.code)
}});
}catch(e){
console.log("set unexpected error: " + e);
}
parameter.set
set(key: string, value: string): Promise
設置系統屬性Key對應的值。
系統能力: SystemCapability.Startup.SysInfo
參數:
參數名 | 類型 | 必填 | 說明 |
---|---|---|---|
key | string | 是 | 待待設置的系統屬性Key。 |
value | string | 否 | 待設置的系統屬性值。 |
返回值:
類型 | 說明HarmonyOS與OpenHarmony鴻蒙文檔籽料:mau123789是v直接拿 |
---|---|
Promise | Promise示例,用于異步獲取結果。 |
示例:
try {
var p = para.set("test.parameter.key", "testValue");
p.then(function (value) {
console.log("set test.parameter.key success: " + value);
}).catch(function (err) {
console.log(" set test.parameter.key error: " + err.code);
});
}catch(e){
console.log("set unexpected error: " + e);
}
審核編輯 黃宇
-
鴻蒙
+關注
關注
57文章
2313瀏覽量
42748
發布評論請先 登錄
相關推薦
評論