Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
4b9d28cf
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4b9d28cf
编写于
5月 09, 2022
作者:
W
wusongqing
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
updated docs
Signed-off-by:
N
wusongqing
<
wusongqing@huawei.com
>
上级
984c3afb
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
11 addition
and
11 deletion
+11
-11
en/application-dev/ability/fa-serviceability.md
en/application-dev/ability/fa-serviceability.md
+11
-11
未找到文件。
en/application-dev/ability/fa-serviceability.md
浏览文件 @
4b9d28cf
...
...
@@ -24,16 +24,16 @@ A Service ability is used to run tasks in the background, such as playing music
```
javascript
export
default
{
onStart
(
want
)
{
onStart
()
{
console
.
log
(
'
ServiceAbility onStart
'
);
},
onCommand
(
want
,
restart
,
startId
)
{
onCommand
(
want
,
startId
)
{
console
.
log
(
'
ServiceAbility onCommand
'
);
},
onConnect
(
want
)
{
console
.
log
(
'
ServiceAbility OnConnect
'
);
},
onDisconnect
()
{
onDisconnect
(
want
)
{
console
.
log
(
'
ServiceAbility OnDisConnect
'
);
},
onStop
()
{
...
...
@@ -174,7 +174,7 @@ import rpc from "@ohos.rpc";
let
mMyStub
;
export
default
{
onStart
(
want
)
{
onStart
()
{
class
MyStub
extends
rpc
.
RemoteObject
{
constructor
(
des
)
{
if
(
typeof
des
===
'
string
'
)
{
...
...
@@ -182,7 +182,7 @@ export default {
}
return
null
;
}
onRemoteRequest
(
code
,
message
,
reply
,
option
)
{
onRemoteRequest
(
code
,
data
,
reply
,
option
)
{
console
.
log
(
"
ServiceAbility onRemoteRequest called
"
);
if
(
code
===
1
)
{
let
op1
=
data
.
readInt
();
...
...
@@ -197,14 +197,14 @@ export default {
}
mMyStub
=
new
MyStub
(
"
ServiceAbility-test
"
);
},
onCommand
(
want
,
restart
,
startId
)
{
onCommand
(
want
,
startId
)
{
console
.
log
(
'
ServiceAbility onCommand
'
);
},
onConnect
(
want
)
{
console
.
log
(
'
ServiceAbility OnConnect
'
);
return
mMyStub
;
},
onDisconnect
()
{
onDisconnect
(
want
)
{
console
.
log
(
'
ServiceAbility OnDisConnect
'
);
},
onStop
()
{
...
...
@@ -225,12 +225,12 @@ The following code snippet shows how to implement the callbacks:
```
ts
let
mRemote
;
function
onConnectCallback
(
element
,
remote
){
console
.
log
(
'
onConnect
Local
Service onConnectDone element:
'
+
element
);
console
.
log
(
'
onConnect
Loca
lService onConnectDone remote:
'
+
remote
);
console
.
log
(
'
onConnect
Remote
Service onConnectDone element:
'
+
element
);
console
.
log
(
'
onConnect
Remote
lService onConnectDone remote:
'
+
remote
);
mRemote
=
remote
;
if
(
mRemote
==
null
)
{
prompt
.
showToast
({
message
:
"
onConnect
Local
Service not connected yet
"
message
:
"
onConnect
Remote
Service not connected yet
"
});
return
;
}
...
...
@@ -243,7 +243,7 @@ function onConnectCallback(element, remote){
console
.
log
(
'
sendRequest success
'
);
let
msg
=
reply
.
readInt
();
prompt
.
showToast
({
message
:
"
onConnect
Local
Service connect result:
"
+
msg
,
message
:
"
onConnect
Remote
Service connect result:
"
+
msg
,
duration
:
3000
});
}).
catch
((
e
)
=>
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录