在 MVC 中,如何返回字符串结果?

问题描述

您可以只使用ContentResult返回纯字符串:

public ActionResult Temp() {
    return Content("Hi there!");
}

ContentResult认情况下返回 atext/plain作为其contentType。这是可重载的,因此您还可以执行以下操作:

return Content("<xml>This is poorly formatted xml.</xml>", "text/xml");

解决方法

在我的 AJAX 调用中,我想将一个字符串值返回给调用页面。

我应该使用ActionResult还是只返回一个字符串?