# stopReceiveBlueAdvertising ^6.8

停止接受广告信息

# 请求参数

Prop Type Default Comment
id String N/A 监听器的ID

# 接口调用示例

const params = {
  id: '12345678', // 监听器的ID
}
this.$bridge
  .stopReceiveBlueAdvertising(params)
  .then(res => {
    this.$alert(res)
  })
  .catch(err => {
    this.$toast(err)
  })
1
2
3
4
5
6
7
8
9
10
11

# 返回参数

  • 成功时返回

  • 失败时返回

更新时间: 7/27/2021, 11:23:45 AM