skip to Main Content

Javascript – Angular 13 – Getting error "Cannot read properties of null (reading 'getParsed')"

working on an Angular 13 project and getting an exception: TypeError: Cannot read properties of null (reading 'getParsed') at .../main.2506c840be361c93.js:1:325924 at Array.filter () at nd._getActiveElements (.../main.2506c840be361c93.js:1:325808) at nd.handleEvent (.../main.2506c840be361c93.js:1:325525) at Object.afterEvent (.../main.2506c840be361c93.js:1:326752) at Fe (.../main.2506c840be361c93.js:1:152333) at Au._notify (.../main.2506c840be361c93.js:1:256447) at Au.notify…

VIEW QUESTION

Angular: I keep on getting error 400: bad request "One or more validation error occured" when using httpPost – Asp.net

Service.ts addTankValues(data:any) { return this.http.post(this.TankApiUrl + "...", data).pipe( tap(()=>{ this.RefreshRequired.next(); }) ); } Subscribing to the httpPost: SaveTV(){ if(this.TVForm.valid){ console.log(this.TVForm.value); this.service.addTankValues(this.TVForm.value).subscribe(result=>{ this.TVFormresp=result; console.log(this.TVFormresp); this.alert = true; this.TVForm.reset(); }); }else{ console.log("form not valid"); } I keep on getting 400 error: bad…

VIEW QUESTION
Back To Top
Search