0

I want to know how to send the parameter 'foo' using the REST Console (chrome pluggin). He should be sent as JSON.

Blockquote

public class ComandaEletronicaWSController : Controller
{
    [HttpPost]
    public JsonResult ComandaServlet(Foo foo)
    {
        var action = Request.QueryString["Action"];

        return Json(new { Ok = true });
    }
}
public class Foo
{
    public int bar { get; set; }
    public int beer { get; set; }
}
4

1 回答 1

6

您需要传递到请求有效负载。

在此处输入图像描述

选择内容类型为

应用程序/json

并将您的 JSON 放在 RAW Body 上

于 2013-04-30T17:08:24.490 回答