私の問題は、データが観測可能なので、データが の場合は未定義であり、定義されていない場合は医師のオブジェクトに入れますが、 私のコードの一部はデータを使用してエラーが発生するためです。 値は定義されていませんどのように変数の応答の値を取得できますか?あなたが `` workingDayFilter呼び出すとき角度4の観測可能な応答から値を取得する方法は?
workingDayFilter = (d: Date): boolean => {
const day = d.getDay();
let workingDays = this.doctor.workingDays;
let result: boolean = false;
for (let i = 0; i < workingDays.length; i++) {
if (day == workingDays[i]) {
result = true;
}
}
return result;
}
ngOnInit() {
this.getDoctor();
console.log(this.doctor);
this.appointmentForm = this.formBuilder.group({
patientId: this.patientId,
date: this.date,
timeSlot: this.timeSlot
});
}
public getDoctor() {
this.doctorService.getDoctorPublicInfo().subscribe((data) => {
if (data != undefined) {
this.doctor = data.json();
}
});
}
のようなものを試してみてください? –
フィルタは角度材料で自動的に呼び出されます。実行のコントロールはありません。基本的に、角度材料の日付ピッカーにフィルタを追加します。 – ashutosh
値を割り当てる前に、そのプロパティが 'workingDayFilter'で定義されていないことがわかります。 – dev