小编典典

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

all

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

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


阅读 90

收藏
2022-03-03

共1个答案

小编典典

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

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

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

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