我在 Angular 应用程序中遇到了同样的问题。我在我的应用程序中使用 RocketChat REST API,我试图使用rooms.createDiscussion
,但出现如下错误。
ERROR Error: Uncaught (in promise): HttpErrorResponse: {"headers":{"normalizedNames":{},"lazyUpdate":null},"status":200,"statusText":"OK","url":"myurl/rocketchat/api/v1/rooms.createDiscussion","ok":false,"name":"HttpErrorResponse","message":"Http failure during parsing for myrul/rocketchat/api/v1/rooms.createDiscussion","error":{"error":{},"text":"
我尝试了几件事,比如改变,responseType: 'text'
但都没有奏效。最后我发现问题出在我的 RocketChat 安装上。正如RocketChat 更改日志中提到的,APIrooms.createDiscussion
是在 1.0.0 版本中引入的,不幸的是我使用的是较低版本。
我的建议是在花时间修复 Angular 代码中的错误之前检查 REST API 是否正常工作。我用curl
命令来检查。
curl -H "X-Auth-Token: token" -H "X-User-Id: userid" -H "Content-Type: application/json" myurl/rocketchat/api/v1/rooms.createDiscussion -d '{ "prid": "GENERAL", "t_name": "Discussion Name"}'
我也收到了无效的 HTML 作为响应。
<!DOCTYPE html>
<html>
<head>
<meta name="referrer" content="origin-when-crossorigin">
<script>/* eslint-disable */
'use strict';
(function() {
var debounce = function debounce(func, wait, immediate) {
而不是如下的有效 JSON 响应。
{
"discussion": {
"rid": "cgk88DHLHexwMaFWh",
"name": "WJNEAM7W45wRYitHo",
"fname": "Discussion Name",
"t": "p",
"msgs": 0,
"usersCount": 0,
"u": {
"_id": "rocketchat.internal.admin.test",
"username": "rocketchat.internal.admin.test"
},
"topic": "general",
"prid": "GENERAL",
"ts": "2019-04-03T01:35:32.271Z",
"ro": false,
"sysMes": true,
"default": false,
"_updatedAt": "2019-04-03T01:35:32.280Z",
"_id": "cgk88DHLHexwMaFWh"
},
"success": true
}
所以在更新到最新的 RocketChat之后,我就可以使用上面提到的 REST API。