我知道我在这里一定很愚蠢,但是我无法弄清楚为什么这段代码不起作用.我是Razor的新手,所以请放轻松.
我在标记中包含以下代码:(我将其简化为在仍能重现问题的同时,尽可能简化,以便希望可以更轻松地诊断问题)
string testVar = "test";
@testVar
它返回以下内容:
error CS0103: The name 'testVar' does not exist in the current context
我尝试为变量使用不同的名称,尝试将其使用“ var”而不是“ string”作为声明,我尝试为其分配各种不同的值,尝试将变量括在方括号中类似于@(testVar),但问题仍然存在.这非常令人沮丧,因为在我的代码的另一部分中,
string prop = @p.Name + " (" + @p.PropertyType + ") - " + @p.GetValue(@page, null).ToString() + "\r\n";
@prop
效果很好.
我想不出是什么原因造成的,它开始让我感到沮丧.
谢谢,
M
解决方法:
在Razor中,当我们要编写c#语句时,必须告诉我们c#代码从这里开始:
@{ // from here c# block starts
string testVar = "test";
} // here ends
现在,如果要在html中访问此变量,可以执行以下操作:
<span>@testVar</span>
当您写作时:
string prop = @p.Name + " (" + @p.PropertyType + ") - " + @p.GetValue(@page, null).ToString() + "\r\n";
它被视为纯文本,并且将在浏览器中呈现为“ string prop = …”
您必须通过以下方式告诉它是c#代码:
@{
string prop = @p.Name + " (" + @p.PropertyType + ") - " + @p.GetValue(@page, null).ToString() + "\r\n";
}