6

我希望每个人都做得很好。我最近开始使用 angular 4.4,我一直在尝试将数据发布到我的 api 服务器,但不幸的是它不起作用。我已经花了大约 2 天的时间,但仍然没有成功。并且已经尝试过angular.io的 6-7 篇文章。我已经尝试过HttpHttpclient模块,但似乎没有任何效果。

问题是,每当我尝试将数据发布到我的服务器时,Angular 都会发出 http OPTIONS类型请求而不是 POST

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

而且我还尝试发送带有请求的自定义选项,但仍然没有成功。

const headers = new Headers({ 'Content-Type': 'x-www-form-urlencoded' });
const options = new RequestOptions({ headers: headers });
options.method = RequestMethod.Post;
options.body = {name: 'Adam Smith'};
//options.body = JSON.stringify({name: 'Adam Smith'}); // i also tried this
//options.body = 'param1=something&param2=somethingelse'; // i also tried this

我使用的是 ASP.NET core 2.0,但由于它不起作用,我也尝试了简单的 php 代码,这是 php 的服务器端代码。而且它也不起作用。

<?php
print_r($_POST);
?>

注意:服务器上也启用了 Cors。另外,我还尝试了简单的获取请求,并且它工作得很好。

我真的很感激一些帮助。

提前致谢

4

3 回答 3

7

我通过将 Content-Type 设置为application/x-www-form-urlencoded

  const headers = new Headers({ 'Content-Type': 'application/x-www-form-urlencoded' });
  const options = new RequestOptions({ headers: headers });
  const params = new URLSearchParams();
  params.append('mypostField', 'myFieldValue');
  http.post('myapiendpoint.com', params, options).subscribe();
于 2017-10-12T18:32:56.457 回答
2

您是否尝试过将标题作为 post menthod 中的第三个参数传递:

this.http.post('http://myapiserver.com', JSON.stringify({name: 'Adam Smith'}), { headers: new Headers({ 'Content-Type': 'application/json' }) }).subscribe(
    res => {
        const response = res.text();
    }
);

确保从 @angular/http 导入标头

于 2017-10-12T14:26:05.840 回答
1

我有同样的问题,我像这样使用。(使用FormData)试试看。它对我有用。

let formdata = new FormData();
formdata.append('email', 'adam@example.com');

this.http.post('http://myapiserver.com', formdata).subscribe(
    res => {
        const response = res.text();
    }
);
于 2018-05-30T20:17:28.833 回答