Để thực hiện câu lệnh post trong app.component
on_post(){
//alert("on_post()");
var url="http://localhost/xxx/index.php/angular5/test";
var data={ten:"thuc"};
this.http.post(url+"/test_post",data)
.subscribe(
res => {
//console.log(res);
this.o=res;
},
err => {
console.log('Error occured');
}
);
}
chúng ta cần dùng
import { HttpClientModule } from ‘@angular/common/http’;
HttpClientModule,
Vậy muốn post trong một new-component ta phải làm sao? ACE nào biết chỉ giúp với!
thousands thks!!!