I have a Web API controller that looks like this:
[HttpPost]
public IHttpActionResult Test()
{
return Ok();
}
This is correct syntax, However when I try to call this from a service in Angular 2, I get the error message: "json parsing error syntax error unexpected end of input." To resolve this issue, I have to put a value into the ActionResult such as
return Ok(1)
Am I missing some configuration? My Angular 2 service call looks like this:
return this.http.post(API/Controller/Test).map(res => res.json());
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…