在我的 AJAX 调用中,我想将一个字符串值返回给调用页面。
我应该使用ActionResult还是只返回一个字符串?
ActionResult
您可以只使用ContentResult返回纯字符串:
ContentResult
public ActionResult Temp() { return Content("Hi there!"); }
ContentResult默认情况下返回 atext/plain作为其contentType。这是可重载的,因此您还可以执行以下操作:
text/plain
return Content("<xml>This is poorly formatted xml.</xml>", "text/xml");