Работа с угловым 2 HTTP PUT-запросом.У меня есть компонент и сервис.В компоненте я делаю запрос на обновление атрибутов аккаунта.Затем он вызывает Сервис для обновления учетной записи через API.При ответе я пытаюсь получить код состояния и сообщение о статусе из ответа.
Это код службы,
let headers = new Headers({ 'Content-Type': 'application/json' }); // ....Set content type to JSON
let options = new RequestOptions({ headers: headers });
return this.http.post((('http://192.168.16.89:')+this.globalData.port1+('/api.spacestudy.com/spacestudy/') +
this.globalData.institutename + ('/admin/account/saveattributes')),
this.account, options)
.map((success: Response )=>this.success=success.status,
)
.catch(this.handleError);
}
private handleError (error: Response | any) {
this.errorStatus=error.status;
console.error(error.message || error);
return Observable.throw("error status is "+this.errorStatus);
}
Этот код класса компонента,
this.accountDetailService.updateAccountData(this.nAccountId,this.nDeptId,this.sLocation,this.nAccountCPCMappingid,
this.nInvestigatorId,this.sAcctDesc,this.sClientAcctId)
.subscribe(successCode => {
this.statusCode= successCode;
console.log("Success: "+ this.statusCode);
console.log("Successfully Updated")
},
errorCode => {this.statusCode = errorCode;
console.log("Error code is : "+ this.statusCode);
});
Это мой HTML-код, где я пытаюсь напечатать код состояния с конкретным сообщением,
<div *ngIf="statusCode" >
<div *ngIf="statusCode === 200" class="successResponse" [ngClass] = "'success'">
Account Updated successfully.
</div>
<div *ngIf="statusCode === 404" class="errorResponse" [ngClass] = "'error'">
Data Retrieval Failure
</div>
<div *ngIf="statusCode == 405" class="errorResponse" [ngClass] = "'error'">
REquested Method type not supported.
</div>
<div *ngIf="statusCode === 406" class="errorResponse" [ngClass] = "'error'">
You can not pass null parameter.
</div>
<div *ngIf="statusCode === 500" class="errorResponse" [ngClass] = "'error'">
Internal Server Error.
</div>
</div>
это ответ, который я получаю,
Response {_body: "{"statusCode":405,"message":"You cannot make this …estudy/rockefeller/admin/account/saveattributes"}", status: 405, ok: false, statusText: "OK", headers: Headers, …}
headers
:
Headers {_headers: Map(4), _normalizedNames: Map(4)}
ok
:
false
status
:
405
statusText
:
"OK"
type
:
2
url
:
"http://192.168.16.89:8081/api.spacestudy.com/spacestudy/rockefeller/admin/account/saveattributes"
_body
:
"{"statusCode":405,"message":"You cannot make this request - the method is not allowed!","status":"Request method 'POST' not supported","error":"/api.spacestudy.com/spacestudy/rockefeller/admin/account/saveattributes"}"
__proto__
:
Body
Я не получаю правильный путьизвлечь данные из ответа.Мой ответ правильный, но я не могу получить к нему доступ в браузере.Пожалуйста, кто-нибудь прояснить мои сомнения и руководство для решения моей проблемы.