我无法获得Angular5 httpclient.post请求来工作。我得到404(如chrome devtools中所示),并且在下游出现未知错误。我知道我的网址很好,因为我可以使用邮差来发帖,并且效果很好。我一直在与标头一起走来走去,但效果不佳。我要去C#/嵌入式webapi服务器。 https://unosquare.github.io/embedio/
我在这里想念什么?
const options = {
headers: new HttpHeaders({
'Access-Control-Allow-Headers': 'Content-Type',
'Access-Control-Allow-Methods': 'GET, POST, OPTIONS',
'Access-Control-Allow-Origin': '*',
'Content-Type': 'application/json'
})
};
const e = eventDescriptor.events[0];
this._http.post("http://localhost:4000/api/config/setidlestate", e, options)
.subscribe(
data => {
console.log("POST Request is successful ", data);
},
error => {
console.log("Error", error);
}
);