asp.net core razoy视图没有@helper,请问没有没其他方法代替?
你需要的是 Tag Helper https://docs.microsoft.com/en-us/aspnet/core/mvc/views/tag-helpers/intro
谢谢
dotnet Core去掉了Razor中的所有Helper方法,TagHelper方法来取代,意在让Razor语言看来更加的像原生的标签。 去看看微软的文档吧,比原来helper好用多了
@functions 指令让你能在 Razor 页面中添加函数级别的内容,其语法为:@functions { // C# Code }