我正在试验 Rasa Core 框架的默认MoodBot 示例。我开发了一个简单的 Angular 5 应用程序作为对话流的前端。Rasa HTTP API 在基于 Linux 的后端服务器上运行,端口为 5005(我们称之为http://my.very.own.server:5005/),使用以下命令:
python3 -m rasa_core.server -d models/dialogue -u models/nlu/default/current -o out.log
我可以使用 Postman 应用程序与服务器通信并获得有效响应。但是当我从我的 Angular 应用程序中尝试相同的操作时,它会返回一个404 (Not found)
错误。
使用邮递员(工作):
POST:my.very.own.server:5005/conversations/default/parse
请求正文:{"query":"hi"}
Headers:Content-Type:application/json
Response:Success (200) - 有效的 JSON 内容已收到
使用 Angular 应用程序(不工作):
public getResponse(query: string) {
let finalUrl: string = "http://my.very.own.server/" + "conversations/default/parse/";
let data = {
'query' : query
}
return this.http.post(
`${finalUrl}`, data
).map(res => {
return res.json()
})
}
// Call the method using:
getResponse("hi").subscribe(res => {
console.log(res);
});
这会导致控制台错误:
Failed to load http://my.very.own.server:5005/conversations/default/parse/:
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://localhost:4200' is therefore not allowed access.
The response had HTTP status code 404.
我试过的:
- 我尝试使用附加
--cors
参数运行 Rasa 服务器(如此处所示):
python3 -m rasa_core.server -d models/dialogue -u models/nlu/default/current -o out.log --cors ["*"]
- 我尝试添加
"cors_origins" : ["*"]
到nlu_model_config.json
文件中(如此处所示)。
两种方式都没有区别。我在这里做错了什么,我该怎么做才能从 Rasa HTTP API 正确启用 CORS 支持?