Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
8834b47f
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看板
提交
8834b47f
编写于
1月 28, 2022
作者:
C
cff-gite
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改了sensor和vibrate的用例格式、参数、命名错误。
Signed-off-by:
N
cff-gite
<
chenfeifei8@huawei.com
>
上级
9b03f4a8
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
216 addition
and
222 deletion
+216
-222
zh-cn/application-dev/reference/apis/js-apis-sensor.md
zh-cn/application-dev/reference/apis/js-apis-sensor.md
+177
-177
zh-cn/application-dev/reference/apis/js-apis-vibrator.md
zh-cn/application-dev/reference/apis/js-apis-vibrator.md
+39
-45
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-sensor.md
浏览文件 @
8834b47f
此差异已折叠。
点击以展开。
zh-cn/application-dev/reference/apis/js-apis-vibrator.md
浏览文件 @
8834b47f
...
...
@@ -7,7 +7,7 @@
## 导入模块
```
import vibrat
e
from '@ohos.vibrator';
import vibrat
or
from '@ohos.vibrator';
```
...
...
@@ -16,7 +16,7 @@ import vibrate from '@ohos.vibrator';
ohos.permission.VIBRATE
## vibrat
e
.vibrate
## vibrat
or
.vibrate
vibrate(duration: number): Promise
<
void
>
...
...
@@ -37,17 +37,15 @@ vibrate(duration: number): Promise<void>
-
示例:
```
vibrator.vibrate(1000).then(error)=>{
if(error){
console.log(“error.code”+error.code+“error.message”+error.message);
}else{
console.log(“Promise returned to indicate a successful vibration.”);
}
}
vibrator.vibrate(1000).then(()=>{
console.log("Promise returned to indicate a successful vibration.");
}, (error)=>{
console.log("error.code"+error.code+"error.message"+error.message);
});
```
## vibrat
e
.vibrate
## vibrat
or
.vibrate
vibrate(duration: number, callback?: AsyncCallback
<
void
>
): void
...
...
@@ -62,16 +60,16 @@ vibrate(duration: number, callback?: AsyncCallback<void>): void
-
示例
**:**
```
vibrator.vibrate(1000,function(error){
if(error){
console.log(“error.code”+error.code+“error.message”
+error.message);
}else{
console.log(“Callback returned to indicate a successful vibration.”
);
}
if(error){
console.log("error.code"+error.code+"error.message"
+error.message);
}else{
console.log("Callback returned to indicate a successful vibration."
);
}
})
```
## vibrat
e
.vibrate
## vibrat
or
.vibrate
vibrate(effectId: EffectId): Promise
<
void
>
...
...
@@ -89,17 +87,15 @@ vibrate(effectId: EffectId): Promise<void>
-
示例:
```
vibrator.vibrate(effectId:EffectId).then(error)=>{
if(error){
console.log(“error.code”+error.code+“error.message”+error.message);
}else{
Console.log(“Promise returned to indicate a successful vibration.”);
}
}
vibrator.vibrate(vibrator.EffectId.EFFECT_CLOCK_TIMER).then(()=>{
console.log("Promise returned to indicate a successful vibration.");
}, (error)=>{
console.log("error.code"+error.code+"error.message"+error.message);
});
```
## vibrat
e
.vibrate
## vibrat
or
.vibrate
vibrate(effectId: EffectId, callback?: AsyncCallback
<
void
>
): void
...
...
@@ -113,17 +109,17 @@ vibrate(effectId: EffectId, callback?: AsyncCallback<void>): void
-
示例:
```
vibrator.vibrate(
effectId:EffectId,
function(error){
if(error){
console.log(“error.code”+error.code+“error.message”
+error.message);
}else{
console.log(“Callback returned to indicate a successful vibration.”
);
}
vibrator.vibrate(
vibrator.EffectId.EFFECT_CLOCK_TIMER,
function(error){
if(error){
console.log("error.code"+error.code+"error.message"
+error.message);
}else{
console.log("Callback returned to indicate a successful vibration."
);
}
})
```
## vibrat
e
.stop
## vibrat
or
.stop
stop(stopMode: VibratorStopMode): Promise
<
void
>
...
...
@@ -141,17 +137,15 @@ stop(stopMode: VibratorStopMode): Promise<void>
-
示例:
```
vibrator.stop(stopMode:VibratorStopMode).then((error)=>{
if(error){
console.log(“error.code”+error.code+“error.message”+error.message);
}else{
Console.log(“Promise returned to indicate successful.”);
}
})
vibrator.stop(vibrator.VibratorStopMode.VIBRATOR_STOP_MODE_PRESET).then(()=>{
console.log("Promise returned to indicate a successful vibration.");
}, (error)=>{
console.log("error.code"+error.code+"error.message"+error.message);
});
```
## vibrat
e
.stop
## vibrat
or
.stop
stop(stopMode: VibratorStopMode, callback?: AsyncCallback
<
void
>
): void;
...
...
@@ -165,12 +159,12 @@ stop(stopMode: VibratorStopMode, callback?: AsyncCallback<void>): void;
-
示例:
```
vibrator.stop(
stopMode:VibratorStopMode,
function(error){
if(error){
console.log(“error.code”+error.code+“error.message”
+error.message);
}else{
Console.log(“Callback returned to indicate successful.”
);
}
vibrator.stop(
vibrator.VibratorStopMode.VIBRATOR_STOP_MODE_PRESET,
function(error){
if(error){
console.log("error.code"+error.code+"error.message"
+error.message);
}else{
console.log("Callback returned to indicate successful."
);
}
})
```
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录