有谁知道如何模拟 HtmlHelper.Partial?
我已经创建了自己的 htmlhelper 类,并且所述帮助类的功能之一是返回一个 MvcHtmlString 的htmlHelper.Partial
.
例子:
public static MvcHtmlString ScriptEditorFor(this HtmlHelper<ViewModel> htmlHelper,
Identifiers.PainAssessmentVariables painVariable)
{
return htmlHelper.Partial("test");
}
当我尝试最小起订量测试时出现空引用异常