我想控制在Json结果中发送的属性。
...鉴于
public class Result
{
public string SendThisProperty { get; set; }
public string DontSendThisProperty { get; set; }
}
public virtual ActionResult Index()
{
var result = new Result();
return Json(result);
}
有没有办法只返回属性'SendThisProperty'?
答案 0 :(得分:2)
将[ScriptIgnore]
添加到json中不需要的属性声明中,这应该可以解决这个问题