Posts by Fernando Munhoz • 1 point
3 posts
-
-1
votes1
answer150
viewsQ: Send a POST and how do I recover the data in ANGULAR?
onSubmit() { console.log(this.formulario.value) this.http.post(this.configUrl, (this.formulario.value)).pipe( map(res => res)) .subscribe(dados => console.log(dados)) } This is my post code,…
-
-1
votes2
answers954
viewsQ: How to load a page into a div with Angular
Talk to the guys!! I have a huge question and I can’t solve it. I’m developing a TCC application for my Angular College. I have a menu and within this menu there are options to browse the site, but…
-
-1
votes1
answer352
viewsQ: Http Post in Angular
Guys, I’m trying to do an http post to send a json to the server but it’s giving an error. My code is as follows the Imports import { Component, OnInit } from '@angular/core'; import { FormGroup,…