我正在尝试将JsonResult对象转换为模型。 我见过几个将Json字符串转换为模型的例子,但我不确定如何转换JsonResult对象。 我试图使用ConvertToType但是没有成功。 我做错了什么?
public ActionResult Search(string keyWord)
{
var result = new JsonResult
{
JsonRequestBehavior = JsonRequestBehavior.AllowGet,
Data = _featuresSearch.Search(keyWord)
};
JavaScriptSerializer objJavascript = new JavaScriptSerializer();
_SearchResult model = objJavascript.ConvertToType<_SearchResult>(result);
return View("SearchResult", model);
}