我目前正在使用角度4來構建我的web應用程序。在那裏,我通過對web服務的其餘調用來獲取數據,當我發佈數據時我想知道是否可以更改主體表示(第二個參數在後期的方法)與對象,所以說明會更容易。角度發佈方法參數
updatePasswordWithObservable(userToAdd:User) {
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
this.http.post(this.updatePwdUrl,
{
"internalId": 0,
"oldPwd": "",
"pwd": "123",
"reset": true,
"userEntry": {
"activeNotifications": true,
"aspects": [
{
"aspectName": "string",
"internalId": 0
}
],
"email": "[email protected]",
"enabled": true,
"lastName": "waaaa",
"login": "[email protected]",
"name": "souad12219",
"phone": ""
}
}
) .subscribe( 解析度=> { 的console.log(RES); }, ERR => { 的console.log( 「發生錯誤」);} ); }
我忘了標題選項 – fbm
請接受我的回答 – OPV
已接受 – fbm