# setBackHandle ^7.10
设置是否监控安卓手机物理返回键功能(安卓: ^7.10, ios: ^8.6)
# 请求参数
Prop | Type | Default | Comment |
---|---|---|---|
isMonitor | String | N/A | on: 打开监控,off: 关闭监控 |
# 接口调用示例
const params = {
"isMonitor": "on"
}
this.$bridge
.setBackHandle(params)
.then(res => {
this.$alert(res)
})
.catch(err => {
this.$toast(err)
})
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
# 接口返回示例
// 通过监听全局事件监听返回messageType等于hardwareBackClick
this.$bridge
.addEventListener('receiveMessageFromApp', (res) => {
// res.messageType:消息类型
// res.messageBody: 原生返回的json数据。
if (res.messageType == 'hardwareBackClick'){
// hardwareBackClick: 返回的key值
console.log(res.messageBody)
}
})
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12