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.
我需要在 ASP.NET MVC 视图的 head 部分呈现一些脚本。如何做到这一点?
在 ASP.NET 中,我们在 Master 中有 ContentPlaceHolders。实现这个的 MVC 等价物是什么?
你可以@section这样使用:
@section
主文件:
@RenderSection("masterjs", required: false)
查看文件:
@section masterjs { <script type="text/javascript" src="@Url.Content("/Scripts/SomeScript.js")"></script> }