this._weatherService.getWeather(this.location.city,this.location.code).subscribe((response) => {
console.log(response);
this.weather = response;
});
得到此错误“消息”:“属性'subscribe'在以下位置不存在 输入“ void”。”
答案 0 :(得分:2)
您的烦恼是因为您没有返回来自getWeather()
错误void
(表示您未返回任何内容)
getWeather()
中的SO使用return
:
getWeather(..){
...
return whatever_you_have_to_return;
}