IONIC获得500个“内部服务器错误”表格后API调用

时间:2018-12-13 05:19:52

标签: angular ionic2 angular2-services ionic-native angular4-httpclient

我从ionic Post API Call收到500个“ Internal Server error”,该api与postman正常工作。 我尝试在ionic中使用jquery ajax调用以及它给出成功响应,这是我正在进行的帖子调用 由于我刚接触离子技术,因此无法解决问题所在,因为它与数据或标头有关,而在进行jQuery时,我没有使用任何标头。

this.http.post("https://test/user/getdata", JSON.stringify({
 "username": "abcd",
 "country": "in",
 "token": "asjsjhaakjdhkjhhkjggjhggh"
 },{
   headers: new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
   }
);

此呼叫给了我内部服务器错误,如果我将标头更改为'application / json',我会得到 “从来源“ https://test/abc”访问“ http://localhost:8080”处的XMLHttpRequest具有 已被CORS政策阻止:对预检请求的响应未通过访问控制检查:它没有HTTP正常状态。” 我尝试将这些标头也放这个错误  **

  1. (“ access-control-allow-methods”,'GET,POST'),
  2. (“ access-control-allow-origin”,“ *”),
  3. (“ Access-Control-Allow-Credentials”,'true');

**  但没有任何效果。预先感谢您的任何帮助。

0 个答案:

没有答案