ASP.NET MVC 中的声明性 HTML 帮助器和 HTML 帮助器有什么区别?
在许多地方,您都会听到开发人员谈论声明性 HTML 帮助程序或HTML 帮助程序。他们有什么区别。它们只是同义词吗?
In many places you hear developers talk about Declarative HTML helpers or HTML helpers. What is their difference. Are they just synonyms?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
声明式 HTML 帮助程序使用
@ helper
函数并在 Razor 视图中内联声明。HTML 帮助器是在单独的类中声明的扩展方法,可以在任何视图引擎(Razor、WebForms、Spark...)中使用。
Declarative HTML helpers use the
@helper
function and are declared inline inside the Razor views.HTML helpers are extension methods declared in separate classes and can be used in any view engine (Razor, WebForms, Spark, ...).