这是用于 ajax 结果的匿名对象的示例:
public ActionResult SomeActionMethod() {
return Json(new {foo="bar", baz="Blech"});
}
这很简单,但是有没有这样的东西:
public ActionResult SomeActionMethod() {
var result = new ????
result["foo"] = "bar";
// Do some other stuff
...
result["john"] = "doe";
// Do some other stuff
...
return Json(result);
}
我希望避免为结果创建自定义类,我更喜欢上面显示的内容。