从Angular 2到ASP.NET ApiController的Http.post

时间:2015-11-16 16:07:58

标签: c# asp.net angular post

ASP.NET

[HttpPost]
[Route("apitest")]
public string apitest([FromBody]string str)
{
   Console.Writeline(str); // str is always null
   return null;
}

Angular 2:

var creds = "str='testst'" ;
var headers = new Headers();
    headers.append('Content-Type', 'application/x-www-form-urlencoded');

http.post('http://localhost:18937/apitest', creds, {
            headers: headers
        })
        .map(res => res.json())
        .subscribe(
            (res2) => {
                console.log('subsribe %o', res2)
            }
        );

我还尝试了creds = {"str":"test"};没有标题JSON.stringify()等但没有成功。如何将数据发布到ASP.NET?

2 个答案:

答案 0 :(得分:0)

这可能是ASP.NET和MVC处理数据POSTS的方式的问题。

[HttpPost]
public ActionResult Index(int? id)
{
    Stream req = Request.InputStream;
    req.Seek(0, System.IO.SeekOrigin.Begin);
    string json = new StreamReader(req).ReadToEnd();

    InputClass input = null;
    try
    {
        // assuming JSON.net/Newtonsoft library from http://json.codeplex.com/
        input = JsonConvert.DeserializeObject<InputClass>(json)
    }

    catch (Exception ex)
    {
        // Try and handle malformed POST body
        return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
    }

    //do stuff

}

您可以参考my answer here以及参考链接,了解问题的潜在原因。有相当多的服务器端Web框架不适当地处理数据POSTS,默认情况下不会将数据添加到您的请求对象。

您不应该[必须]尝试更改角度帖子的行为,并修改标头以假装您的数据帖子是表单帖子。

答案 1 :(得分:0)

var creds = {
   str: 'testst'
};

$http.post('http://localhost:18937/apitest', JSON.stringify(creds));

Web API控制器没有任何变化,它应该可以正常工作。