标签: http angular
我正在使用 Angular 2 ,我想解析对http POST方法的响应。但是,该方法返回String值,而不是object。
String
object
如果我尝试使用Response.json()提取响应,则会返回错误。
Response.json()
有任何建议如何处理?
答案 0 :(得分:4)
请尝试Response::text():
Response::text()
.map(res => res.text())
答案 1 :(得分:0)
只需使用Response::_body。
Response::_body
.map(res => res._body)
Plunker例如用法