我从控制台应用程序调用MVC3控制器操作(JsonResult)。要进行调用,我使用的是System.Net.Http.HttpClient和PostAsJsonAsync方法。
在PostAsJsonAsync方法中,我传递了一个小的poco实例。
这一切都很有效。
我的问题是我无法在调用MVC3控制器操作时拿起poco实例。 谁能告诉我怎么做?
以下是代码:
在控制台应用程序中调用代码:
var client = new HttpClient();
client.BaseAddress = new Uri("http://localhost:50285/");
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
var user = new HashedUser { UserName = "userName", PasswordHash = "abcdef".GetHashCode() };
var response = client.PostAsJsonAsync("app/test", user).Result;
var txt = response.Content.ReadAsAsync<string>().Result;
在MVC3项目中接收代码
public class AppController : Controller
{
public JsonResult Test(HashedUser json)
{
// Problem: json is always a new instance
// of HashedUser and not the one passed in
// from the call to this controller action.
return Json("qqq ppp 777 888" + json.UserName);
}
}
public class HashedUser
{
public string UserName { get; set; }
public int PasswordHash { get; set; }
}
答案 0 :(得分:0)
您应该将POCO序列化并作为JSon对象发送。使用Newtonsoft.Json来做到这一点。这是一些样本:
http://james.newtonking.com/pages/json-net.aspx http://www.west-wind.com/weblog/posts/2012/Aug/30/Using-JSONNET-for-dynamic-JSON-parsing