我正在尝试将函数调用到api调用。到目前为止,我已经完成了以下逻辑,但它无法正常工作。
changeStatus(id) {
this.http.post('https://localhost:44300/api/apis/ChangeStatus/' + id, "")
.subscribe(
data => {
this._data = data.json(),
this.getAllUser();
},
err => this.logError(err)
);
}
}
答案 0 :(得分:1)
这是一个简单的错字 - 只需在,
之后用;
替换data.json()
。