这是我的 _Layout.cshtml
<html>
<head>
@RenderSection("Script", false)
</head>
...
</html>
这是一个简单的编辑页面edit.cshtml
@model Shop.Models.Product
@{
Layout = "~/Views/Shared/_Layout.cshtml";
}
@Html.EditorForModel()
这是 ~/Views/Shared/EditorTemplates/Product.cshtml
@model Shop.Models.Product
@section Script {
<script>alert("hello");</script>
}
...
@section Script{...}
由于 EditorForModel,它在 Product.cshtml 中不起作用。怎么办?