标签: c# asp.net-core asp.net-core-mvc
我想保存
return View("view name", ComplexModel);在Controller方法中,返回类型为IActionResult
return View("view name", ComplexModel);
IActionResult
是否可以提取该html而不通过JavaScript从用户端获取它?
类似:
string html = View("view name", ComplexModel).RawHtml;