我有一个非常奇怪的问题。
使用" Postman"制作API请求和浏览器没问题,一切正常。
现在我使用import { Headers, Http } from '@angular/http';
和observables将请求集成到我的Angular应用程序中。
const requestUrl = 'http://localhost:4040/register';
const headers = new Headers({
'content-type': 'application/x-www-form-urlencoded'
});
this.http
.get(requestUrl, {headers: headers})
.map(response => response.json())
.subscribe(result => {
console.log(result);
}, error => {
console.log(error);
});
请求始终失败,并显示:
无法加载http://localhost:4040/register:对预检请求的响应未通过访问控制检查:否' Access-Control-Allow-Origin'标头出现在请求的资源上。起源' http://localhost:4200'因此不允许访问。
但是:我肯定会发送这些标题!
public static function createJsonResponseWithHeaders($response, $requestedData)
{
// Add origin header
$response = $response->withHeader('Access-Control-Allow-Origin', '*');
$response = $response->withHeader('Access-Control-Allow-Methods', 'GET');
// Add json response and gzip compression header to response and compress content
$response = $response->withHeader('Content-type', 'application/json; charset=utf-8');
$response = $response->withHeader('Content-Encoding', 'gzip');
$requestedData = json_encode($requestedData, JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_NUMERIC_CHECK | JSON_PRETTY_PRINT);
$response->getBody()->write(gzencode($requestedData), 9);
if (!$requestedData || (count($requestedData) === 0)) {
return $response->withStatus(404)->write('Requested data not found or empty! ErrorCode: 011017');
}
return $response;
}
我已经尝试过解决的问题:
在Docker容器中运行Slim App以获得与localhost不同的来源 - 相同的行为
在index.php的正上方添加allow-origin-header
header('Access-Control-Allow-Origin: *');
- 同样的行为
答案 0 :(得分:0)
对不起,我的不好。解决方案很简单:
"缓存控制"似乎不允许请求中的标题,尽管在使用Postman测试api时它工作正常。 我从请求中删除了标题,一切运行良好。
答案 1 :(得分:0)
由于未正确设置CORS,您的请求被阻止。还有其他问题可以解决这个问题,例如: How to make CORS enabled requests in Angular 2
理想情况下,您应该使用的是将您的请求转发给API的代理,最新的Angular CLI支持开箱即用的开发代理(请参阅https://github.com/angular/angular-cli/blob/master/docs/documentation/stories/proxy.md)。你用proxy.conf.json设置它,看起来像这样:
{
"/api": {
"target": "http://localhost:4040",
"secure": false,
"pathRewrite": {"^/api" : ""}
}
}
这段代码的作用是从Angular到URI匹配/ api的任何请求都将被转发到localhost:4040。
请注意,您还需要弄清楚您的应用在非开发环境中如何与API服务器通信。我很高兴使用Nginx来提供Angular文件,并充当API的代理。