gpt4 book ai didi

Razor 内联转换不起作用 - 需要正确的语法

转载 作者:行者123 更新时间:2023-12-04 04:37:41 26 4
gpt4 key购买 nike

有没有人知道为什么使用局部变量很好,但内联转换不起作用?我显然在这里遗漏了一些东西,但我看不到它。

   @if (Model is ISectionInformationProvider)
{
ISectionInformationProvider local = (ISectionInformationProvider)Model;

@* The line below just prints as text *@
<h1>@((ISectionInformationProvider)Model).SectionTitle</h1>

@* These work just fine *@
<h1>@local.SectionTitle</h1>
<p>@local.SectionDescription</p>
}

最佳答案

像这样尝试:

<h1>@(((ISectionInformationProvider)Model).SectionTitle)</h1> 

关于Razor 内联转换不起作用 - 需要正确的语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19444291/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com