从 Taghelper 获取 HTML 内容字符串
Get HTML Content string from Taghelper
如何从 Taghelper 获得 HTML 渲染?假设我为自定义复选框创建了一个 Taghelper。将 html 存储在变量中的代码是什么?
checkboxTagHelper.ProcessAsync(checkboxContext, checkboxOutput);
此外,我注意到 renderHtmlAttributes 在 .Net Core 中不起作用。但是适用于常规 Mvc 4.6.3。这可能是正确的方法吗,.Net Core 中的等效方法是什么?
http://blog.techdominator.com/article/rendering-a-tag-helper-inside-another-tag-helper.html
return $"<{innerOutput.TagName} {renderHtmlAttributes(innerOutput)}>{innerOutput.Content.GetContent()}</{innerOutput.TagName}>";
正在研究,我相信答案是这样的。似乎在为我服务。
return output.Content.GetContent();
如何从 Taghelper 获得 HTML 渲染?假设我为自定义复选框创建了一个 Taghelper。将 html 存储在变量中的代码是什么?
checkboxTagHelper.ProcessAsync(checkboxContext, checkboxOutput);
此外,我注意到 renderHtmlAttributes 在 .Net Core 中不起作用。但是适用于常规 Mvc 4.6.3。这可能是正确的方法吗,.Net Core 中的等效方法是什么?
http://blog.techdominator.com/article/rendering-a-tag-helper-inside-another-tag-helper.html
return $"<{innerOutput.TagName} {renderHtmlAttributes(innerOutput)}>{innerOutput.Content.GetContent()}</{innerOutput.TagName}>";
正在研究,我相信答案是这样的。似乎在为我服务。
return output.Content.GetContent();