我希望每个人都做得很好。我最近开始使用 angular 4.4,我一直在尝试将数据发布到我的 api 服务器,但不幸的是它不起作用。我已经花了大约 2 天的时间,但仍然没有成功。并且已经尝试过angular.io的 6-7 篇文章。我已经尝试过Http和Httpclient模块,但似乎没有任何效果。
问题是,每当我尝试将数据发布到我的服务器时,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¶m2=somethingelse'; // i also tried this
我使用的是 ASP.NET core 2.0,但由于它不起作用,我也尝试了简单的 php 代码,这是 php 的服务器端代码。而且它也不起作用。
<?php
print_r($_POST);
?>
注意:服务器上也启用了 Cors。另外,我还尝试了简单的获取请求,并且它工作得很好。
我真的很感激一些帮助。
提前致谢