标签: angular http syntax-error put
我正在使用Angular 6和Spring引导。我向服务器发出HTTP PUT请求,服务器将响应作为测试发送(即ResponseEntity <'some message',HttpStatus.OK>。我的put请求看起来像this.http.put(this.url + 'clients/' + id, { responseType: 'text' });。当我发出此请求时,出现解析错误说“位置上的意外令牌”。如果这是一个删除请求,则此请求完全相同,但无法理解。
this.http.put(this.url + 'clients/' + id, { responseType: 'text' });