下面的代码返回 [object Object] 而不是字符串。我怎样才能让它返回正确的字符串表示?我正在使用 ASP.NET MVC4 C#。
public JsonResult Names(string name)
{
var a = db.NamesToGet.Select(e => new
{
name = e.Names
});
return Json(a, JsonRequestBehavior.AllowGet);
}