Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的视图被 Razor 模板引擎解析之前对其进行一些预处理。到目前为止,我发现的唯一方法是扩展RazorTemplateEngine类并覆盖CreateParser方法,我可以在其中返回一个自定义解析器,该解析器在调用基本解析器之前进行预处理。
RazorTemplateEngine
CreateParser
现在我的问题是 - 如何让 Razor 使用我的自定义模板引擎?
我不知道这是否对你有用,但它应该:) 尝试添加
@inherits YourRazorTemplateEngine
在你的意见头。
有关更多信息,请查看此页面