“Location”类型的参数不可分配给“BackgroundGeoLocationEvents”类型的参数
Argument of type “Location” is not assignable to parameter of type “BackgroundGeoLocationEvents”
看来我无法为 Background Geolocation plugin 定义 "location" 事件。
我试过了:
- 删除 node_modules 文件夹和 npm 安装
- 使用 ngx 导入
- 已验证 BackgroundGeolocationEvents 已定义(是其:export declare enum BackgroundGeolocationLocationProvider)
- 使用 "location" 和 'location'
有什么问题吗?
看来这可能是文档中的错误?
尝试只玩它想让你玩的游戏。
而不是:
this.backgroundGeolocation.on("location")...
使用:
this.backgroundGeolocation.on(BackgroundGeolocationEvents.location)...
您可能还需要在顶部添加导入,以便在 BackgroundGeolocationEvents
中导入。
看来我无法为 Background Geolocation plugin 定义 "location" 事件。
我试过了:
- 删除 node_modules 文件夹和 npm 安装
- 使用 ngx 导入
- 已验证 BackgroundGeolocationEvents 已定义(是其:export declare enum BackgroundGeolocationLocationProvider)
- 使用 "location" 和 'location'
有什么问题吗?
看来这可能是文档中的错误?
尝试只玩它想让你玩的游戏。
而不是:
this.backgroundGeolocation.on("location")...
使用:
this.backgroundGeolocation.on(BackgroundGeolocationEvents.location)...
您可能还需要在顶部添加导入,以便在 BackgroundGeolocationEvents
中导入。