如果模型属于某种类型,如何仅在_Layout.cshtml中加载脚本?如果模型是我制作的自定义模型类型,我只希望布局加载脚本标签。
答案 0 :(得分:0)
您可以通过视图中的razor语法实现
@if(Model is <yourtypehere>)
{
<script>alert('this is my type')</script>
//or you can even
<script src="myjavascriptfilelocation"/>
}