以下是我用来将json数据发布到rest ful服务的代码
var client = new JsonServiceClient(BaseUri);
Todo d = new Todo(){Content = "Google",Order =1, Done = false };
var s = JsonSerializer.SerializeToString < Todo>(d);
// client.Post<string>("/Todos/", "[{\"content\":\"YouTube\"}]");
// string payload= "[{\"id\":2,\"content\":\"abcdef\",\"order\":1,\"done\":false}]";
// string payload = @"{""todo"":{ {""content"":""abcdef"",""order"":1}} }";
client.Post<string>("/todos/", s);
我尝试传递普通的json数据,它继续使用“Bad data”消息进行查询。然后我尝试serizliing也没有工作的实体。
答案 0 :(得分:1)
您可以使用PostJsonToUrl,它包含在ServiceStack.Text中。