Angular 4 Http POST not working

前端 未结 4 1809
天命终不由人
天命终不由人 2021-02-09 14:19

I hope everyone is doing great. I\'ve recently started working with angular 4.4, i\'ve been trying to post data to my api server, but unfortunately it\'s not working. I\'ve spen

4条回答
  •  我寻月下人不归
    2021-02-09 14:59

    I had same problem and i used like this.(using FormData) try it. It work for me.

    let formdata = new FormData();
    formdata.append('email', 'adam@example.com');
    
    this.http.post('http://myapiserver.com', formdata).subscribe(
        res => {
            const response = res.text();
        }
    );
    

提交回复
热议问题