swift 使用WeatherKit调用函数“获取天气数据”时,WeatherDataService出错

ffscu2ro  于 2022-12-02  发布在  Swift
关注(0)|答案(1)|浏览(229)

WeatherKit有问题,接收数据错误
2022-11-15 15:26:29.810771+0900天气应用程序[40976:2003546] [天气数据服务]响应不包含请求的数据集:. appLocationConfig。返回默认值:应用程序位置配置(报告问题:报告问题位置配置(位置:在页脚之前,自交往起最小天数:0),到期时间:2022年11月15日06时56分29秒+0000

func getWeather(CLlocation: CLLocation, completion: @escaping () -> Void){
        Task {
            do {
                let result = try await weatherService.weather(for: CLlocation)
                weatherDataArray.append(result)
            } catch {
                print(error)
            }
        }
    }

 func getWeatherWithCood(lat: CLLocationDegrees, lon: CLLocationDegrees, completion: @escaping () -> Void){
        Task {
            do {
                let result = try await weatherService.weather(for: .init(latitude: lat, longitude: lon))
                weatherDataArray.append(result)
            } catch {
                print(error)
            }
        }
    }

如何解决此问题?
我检查了我的帐户标识符。
但还是有问题......

rqdpfwrv

rqdpfwrv1#

你解决了这个问题吗?我也有同样的问题,但是没有太多的数据。如果你解决了,你能分享吗?

相关问题