在MVC中,要返回字符串结果,可以使用以下方法:
return Content()
方法返回字符串结果。public ActionResult MyAction()
{
string myString = "Hello, World!";
return Content(myString);
}
@Html.Raw()
方法将字符串直接渲染到页面上。@model string
@{
ViewBag.Title = "MyAction";
}
<h2>MyAction</h2>
<div>
@Html.Raw(Model)
</div>
public class MyModel
{
public string MyString { get; set; }
}
public ActionResult MyAction()
{
MyModel model = new MyModel();
model.MyString = "Hello, World!";
return View(model);
}
@model MyModel
@{
ViewBag.Title = "MyAction";
}
<h2>MyAction</h2>
<div>
@Html.Raw(Model.MyString)
</div>
这些方法可以帮助您在MVC中返回字符串结果。
领取专属 10元无门槛券
手把手带您无忧上云