swan.stopLocationUpdate
基础库 3.150.1 版本开始支持。
解释:关闭监听实时位置变化
方法参数
Object object
object参数说明
属性名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
success | Function | 否 | 接口调用成功的回调函数 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、调用失败都会执行) |
示例
代码示例
- 在 js 文件中
Page({
startLocationUpdate() {
swan.stopLocationUpdate({
success: res => console.log('关闭小程序接收位置消息成功'),
fail: err => console.error('关闭小程序接收位置消息失败:', err),
complete: msg => console.log('调用关闭小程序接收位置消息API完成')
});
}
})