你能告诉我我做错了什么吗?
this.scheduleService.GetZones(environment.systemId)
.pipe(
mergeMap((zone: Zone) => {
return this.dashboardService.GetLatestMeasurementValue(environment.systemId, zone.sensorId)
})
.subscribe(mois => {
this.currentMoisture = mois;
})
);
}
我收到此错误:“OperatorFunction”类型上不存在属性“订阅”