我基于此处提到的动态 css 解决方案:
我注意到继承的 PartialViewResult 仅具有模型的吸气剂,是否有另一种方法可以实现此功能,其中 HttpContext.Response.ContentType = "text/css" 并且我可以像使用局部视图一样发送模型?
我基于此处提到的动态 css 解决方案:
我注意到继承的 PartialViewResult 仅具有模型的吸气剂,是否有另一种方法可以实现此功能,其中 HttpContext.Response.ContentType = "text/css" 并且我可以像使用局部视图一样发送模型?
只需调整自定义操作结果,使其采用模型:
public class CssViewResult : PartialViewResult
{
public CssViewResult(object model)
{
ViewData = new ViewDataDictionary(model);
}
public override void ExecuteResult(ControllerContext context)
{
context.HttpContext.Response.ContentType = "text/css";
base.ExecuteResult(context);
}
}
进而:
public ActionResult Css()
{
MyViewModel model = ...
return new CssViewResult(model);
}
在视图中:
@model MyViewModel
@{
var color = "White";
if (Model.Hour > 18 || Model.Hour < 8)
{
color = "Black";
}
}
.foo {
color: @color;
}