在将 ID 传递给服务并获取数据后,我想将数据修补到我的表单中,SERVER
但我没有得到任何数据。这是我的代码
addForm: FormGroup;
ngOnInit(){
const routesParams=this.routes.snapshot.params;
this.addForm=this.formBuilder.group({
Title:['',[Validators.required,Validators.minLength(1)]],
Body:['',[Validators.required,Validators.minLength(1)]],
Author:['',[Validators.required,Validators.minLength(1)]],
})
console.log(routesParams.post_id);
this.blogService.getBlogbypost_id(routesParams.post_id).subscribe((data:any)=>{
this.addForm.patchValue(data);
});
}
我的代码service.ts
getBlogbypost_id(id:number){
return this.http.get<cBlog[]>(this.updateUrl+id);
}
我也在服务器上获取数据但没有获取subscribe((data: any))