Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
362da98c
D
Docs
项目概览
OpenHarmony
/
Docs
大约 2 年 前同步成功
通知
161
Star
293
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
362da98c
编写于
9月 06, 2023
作者:
D
duyufan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify arkTs
Signed-off-by:
N
duyufan
<
duyufan1@huawei.com
>
Change-Id: If876fc4a47bc0653cd9ccab91778a7ffec8d64ae
上级
c6ad92d1
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
43 addition
and
36 deletion
+43
-36
zh-cn/application-dev/reference/apis/js-apis-devicestatus-cooperate.md
...tion-dev/reference/apis/js-apis-devicestatus-cooperate.md
+43
-36
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-devicestatus-cooperate.md
浏览文件 @
362da98c
...
@@ -10,8 +10,9 @@
...
@@ -10,8 +10,9 @@
## 导入模块
## 导入模块
```
j
s
```
t
s
import
cooperate
from
'
@ohos.cooperate
'
import
cooperate
from
'
@ohos.cooperate
'
import
BusinessError
from
'
@ohos.base
'
```
```
## cooperate.prepare
## cooperate.prepare
...
@@ -30,9 +31,9 @@ prepare(callback: AsyncCallback<void>): void;
...
@@ -30,9 +31,9 @@ prepare(callback: AsyncCallback<void>): void;
**示例**
:
**示例**
:
```
j
s
```
t
s
try
{
try
{
cooperate
.
prepare
((
error
)
=>
{
cooperate
.
prepare
((
error
:
BusinessError
)
=>
{
if
(
error
)
{
if
(
error
)
{
console
.
log
(
`Keyboard mouse crossing prepare failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Keyboard mouse crossing prepare failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
return
;
return
;
...
@@ -62,11 +63,11 @@ prepare(): Promise<void>
...
@@ -62,11 +63,11 @@ prepare(): Promise<void>
**示例**
:
**示例**
:
```
j
s
```
t
s
try
{
try
{
cooperate
.
prepare
().
then
(()
=>
{
cooperate
.
prepare
().
then
(()
=>
{
console
.
log
(
`Keyboard mouse crossing prepare success.`
);
console
.
log
(
`Keyboard mouse crossing prepare success.`
);
},
(
error
)
=>
{
},
(
error
:
BusinessError
)
=>
{
console
.
log
(
`Keyboard mouse crossing prepare failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Keyboard mouse crossing prepare failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
...
@@ -89,9 +90,9 @@ unprepare(callback: AsyncCallback<void>): void;
...
@@ -89,9 +90,9 @@ unprepare(callback: AsyncCallback<void>): void;
**示例**
:
**示例**
:
```
j
s
```
t
s
try
{
try
{
cooperate
.
unprepare
((
error
)
=>
{
cooperate
.
unprepare
((
error
:
BusinessError
)
=>
{
if
(
error
)
{
if
(
error
)
{
console
.
log
(
`Keyboard mouse crossing unprepare failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Keyboard mouse crossing unprepare failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
return
;
return
;
...
@@ -117,11 +118,11 @@ unprepare(): Promise<void>;
...
@@ -117,11 +118,11 @@ unprepare(): Promise<void>;
| ------------------- | --------------------------------------------- |
| ------------------- | --------------------------------------------- |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
| Promise
<
void
>
| 无返回结果的Promise对象。 |
```
j
s
```
t
s
try
{
try
{
cooperate
.
unprepare
().
then
(()
=>
{
cooperate
.
unprepare
().
then
(()
=>
{
console
.
log
(
`Keyboard mouse crossing unprepare success.`
);
console
.
log
(
`Keyboard mouse crossing unprepare success.`
);
},
(
error
)
=>
{
},
(
error
:
BusinessError
)
=>
{
console
.
log
(
`Keyboard mouse crossing unprepare failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Keyboard mouse crossing unprepare failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
...
@@ -156,11 +157,11 @@ activate(targetNetworkId: string, inputDeviceId: number, callback: AsyncCallback
...
@@ -156,11 +157,11 @@ activate(targetNetworkId: string, inputDeviceId: number, callback: AsyncCallback
**示例**
:
**示例**
:
```
j
s
```
t
s
let
targetNetworkId
=
"
networkId
"
;
let
targetNetworkId
=
"
networkId
"
;
let
inputDeviceId
=
0
;
let
inputDeviceId
=
0
;
try
{
try
{
cooperate
.
activate
(
targetNetworkId
,
inputDeviceId
,
(
error
)
=>
{
cooperate
.
activate
(
targetNetworkId
,
inputDeviceId
,
(
error
:
BusinessError
)
=>
{
if
(
error
)
{
if
(
error
)
{
console
.
log
(
`Start Keyboard mouse crossing failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Start Keyboard mouse crossing failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
return
;
return
;
...
@@ -205,13 +206,13 @@ activate(targetNetworkId: string, inputDeviceId: number): Promise<void>;
...
@@ -205,13 +206,13 @@ activate(targetNetworkId: string, inputDeviceId: number): Promise<void>;
**示例**
:
**示例**
:
```
j
s
```
t
s
let
targetNetworkId
=
"
networkId
"
;
let
targetNetworkId
=
"
networkId
"
;
let
inputDeviceId
=
0
;
let
inputDeviceId
=
0
;
try
{
try
{
cooperate
.
activate
(
targetNetworkId
,
inputDeviceId
).
then
(()
=>
{
cooperate
.
activate
(
targetNetworkId
,
inputDeviceId
).
then
(()
=>
{
console
.
log
(
`Start Keyboard mouse crossing success.`
);
console
.
log
(
`Start Keyboard mouse crossing success.`
);
},
(
error
)
=>
{
},
(
error
:
BusinessError
)
=>
{
console
.
log
(
`Start Keyboard mouse crossing failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Start Keyboard mouse crossing failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
...
@@ -238,9 +239,9 @@ deactivate(isUnchained: boolean, callback: AsyncCallback<void>): void;
...
@@ -238,9 +239,9 @@ deactivate(isUnchained: boolean, callback: AsyncCallback<void>): void;
**示例**
:
**示例**
:
```
j
s
```
t
s
try
{
try
{
cooperate
.
deactivate
(
false
,
(
error
)
=>
{
cooperate
.
deactivate
(
false
,
(
error
:
BusinessError
)
=>
{
if
(
error
)
{
if
(
error
)
{
console
.
log
(
`Stop Keyboard mouse crossing failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Stop Keyboard mouse crossing failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
return
;
return
;
...
@@ -278,11 +279,11 @@ deactivate(isUnchained: boolean): Promise<void>;
...
@@ -278,11 +279,11 @@ deactivate(isUnchained: boolean): Promise<void>;
**示例**
:
**示例**
:
```
j
s
```
t
s
try
{
try
{
cooperate
.
deactivate
(
false
).
then
(()
=>
{
cooperate
.
deactivate
(
false
).
then
(()
=>
{
console
.
log
(
`Stop Keyboard mouse crossing success.`
);
console
.
log
(
`Stop Keyboard mouse crossing success.`
);
},
(
error
)
=>
{
},
(
error
:
BusinessError
)
=>
{
console
.
log
(
`Stop Keyboard mouse crossing failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Stop Keyboard mouse crossing failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
...
@@ -307,10 +308,10 @@ getCrossingSwitchState(networkId: string, callback: AsyncCallback<boolean>
...
@@ -307,10 +308,10 @@ getCrossingSwitchState(networkId: string, callback: AsyncCallback<boolean>
**示例**
:
**示例**
:
```
j
s
```
t
s
let
deviceDescriptor
=
"
networkId
"
;
let
deviceDescriptor
=
"
networkId
"
;
try
{
try
{
cooperate
.
getCrossingSwitchState
(
deviceDescriptor
,
(
error
,
data
)
=>
{
cooperate
.
getCrossingSwitchState
(
deviceDescriptor
,
(
error
:
BusinessError
,
data
:
boolean
)
=>
{
if
(
error
)
{
if
(
error
)
{
console
.
log
(
`Get the status failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Get the status failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
return
;
return
;
...
@@ -348,12 +349,12 @@ getCrossingSwitchState(networkId: string): Promise<boolean>;
...
@@ -348,12 +349,12 @@ getCrossingSwitchState(networkId: string): Promise<boolean>;
**示例**
:
**示例**
:
```
j
s
```
t
s
let
deviceDescriptor
=
"
networkId
"
;
let
deviceDescriptor
=
"
networkId
"
;
try
{
try
{
cooperate
.
getCrossingSwitchState
(
deviceDescriptor
).
then
((
data
)
=>
{
cooperate
.
getCrossingSwitchState
(
deviceDescriptor
).
then
((
data
:
boolean
)
=>
{
console
.
log
(
`Get the status success, data:
${
JSON
.
stringify
(
data
)}
`
);
console
.
log
(
`Get the status success, data:
${
JSON
.
stringify
(
data
)}
`
);
},
(
error
)
=>
{
},
(
error
:
BusinessError
)
=>
{
console
.
log
(
`Get the status failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Get the status failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
});
});
}
catch
(
error
)
{
}
catch
(
error
)
{
...
@@ -380,11 +381,13 @@ on(type: 'cooperate', callback: Callback<{ networkId: string, msg: CooperateM
...
@@ -380,11 +381,13 @@ on(type: 'cooperate', callback: Callback<{ networkId: string, msg: CooperateM
**示例**
:
**示例**
:
```
js
```
ts
function
callback
(
networkId
:
string
,
msg
:
cooperate
.
CooperateMsg
)
{
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
networkId
)}
`
);
return
false
;
}
try
{
try
{
cooperate
.
on
(
'
cooperate
'
,
(
data
)
=>
{
cooperate
.
on
(
'
cooperate
'
,
callback
);
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
data
)}
`
);
});
}
catch
(
error
)
{
}
catch
(
error
)
{
console
.
log
(
`Register failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Register failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
}
}
...
@@ -409,28 +412,32 @@ off(type: 'cooperate', callback?: Callback<void>): void;
...
@@ -409,28 +412,32 @@ off(type: 'cooperate', callback?: Callback<void>): void;
**示例**
:
**示例**
:
```
j
s
```
t
s
// 取消注册单个回调函数
// 取消注册单个回调函数
function
callback
(
event
)
{
function
callbackOn
(
networkId
:
string
,
msg
:
cooperate
.
CooperateMsg
)
{
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
event
)}
`
);
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
networkId
)}
`
);
return
false
;
}
function
callbackOff
()
{
console
.
log
(
`Keyboard mouse crossing event`
);
return
false
;
return
false
;
}
}
try
{
try
{
cooperate
.
on
(
'
cooperate
'
,
callback
);
cooperate
.
on
(
'
cooperate
'
,
callback
On
);
cooperate
.
off
(
"
cooperate
"
,
callback
);
cooperate
.
off
(
'
cooperate
'
,
callbackOff
);
}
catch
(
error
)
{
}
catch
(
error
)
{
console
.
log
(
`Execute failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Execute failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
}
}
```
```
```
j
s
```
t
s
// 取消注册所有回调函数
// 取消注册所有回调函数
function
callback
(
event
)
{
function
callback
On
(
networkId
:
string
,
msg
:
cooperate
.
CooperateMsg
)
{
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
event
)}
`
);
console
.
log
(
`Keyboard mouse crossing event:
${
JSON
.
stringify
(
networkId
)}
`
);
return
false
;
return
false
;
}
}
try
{
try
{
cooperate
.
on
(
'
cooperate
'
,
callback
);
cooperate
.
on
(
'
cooperate
'
,
callback
On
);
cooperate
.
off
(
"
cooperate
"
);
cooperate
.
off
(
'
cooperate
'
);
}
catch
(
error
)
{
}
catch
(
error
)
{
console
.
log
(
`Execute failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
console
.
log
(
`Execute failed, error:
${
JSON
.
stringify
(
error
,
[
`code`
,
`message`
])}
`
);
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录