使用 RenderSections 在 asp net 中不起作用

我是asp.net的新手。我必须使用

 @section Scripts{}

但它不起作用。请记住,我在布局页面中调整了以下代码:

@RenderSection("scripts", required: false)

我读过类似的帖子。但我仍然无法解决我的问题。我还有其他方法可以使用它吗?


慕森卡
浏览 163回答 2
2回答

慕运维8079593

它应该是 @section Scripts {} 而不是 @script Scripts{}

慕村9548890

部分允许您在视图中添加将添加到布局中的内容。看法&nbsp; &nbsp;@section scripts {&nbsp; &nbsp; &nbsp; &nbsp; <script>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; alert('hello world');&nbsp; &nbsp; &nbsp; &nbsp; </script>}布局@RenderSection("scripts", false)这个命名的节脚本将在布局中指定的任何地方呈现。@RenderSection 也有 2 个签名:-public HelperResult RenderSection(string name)public HelperResult RenderSection(string name, bool required)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript