- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的一个 View 中,我有一段 Razor 代码的行为不符合我的预期。有问题的代码包含多个位置,我需要将模型中的变量值附加到 html 属性上。下面的代码是我页面上标记的略微简化版本(我删除了一些对本示例不重要的标记“噪音”,只是使代码更难阅读)。
我在三个实例中使用 @topic.StandardTopicId
.第一个和第二个实例如我所料被替换,但第三个实例 name="IsCovered_@topic.StandardTopicId"
在不替换变量的情况下呈现。
有问题的代码:
@foreach(var topic in Model.Group) {
<div id="frame-@topic.StandardTopicId" class="topic-frame">
<label>
<input type="radio" name="IsCovered_@(topic.StandardTopicId)" />
No
</label>
<label>
<input type="radio" name="IsCovered_@topic.StandardTopicId" />
Yes
</label>
</div>
}
...
<div id="frame-42" class="topic-frame">
<label>
<input type="radio" name="IsCovered_42" />
No
</label>
<label>
<input type="radio" name="IsCovered_@topic.StandardTopicId" value="No" />
Yes
</label>
</div>
...
最佳答案
Razor 不会解析单词中间的“@”。与破折号相反,下划线被视为单词的一部分。使用 @() 将 Razor 代码放在单词中。 @(topic.StandardTopicId)
关于asp.net-mvc - 为什么在某些情况下 Razor 不能识别变量而不用括号括起来?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6219322/
我正在尝试执行 vagrant up 但一直遇到此错误: ==> default: IOError: [Errno 13] Permission denied: '/usr/local/lib/pyt
我在容器 div 中有一系列动态创建的不同高度的 div。 Varying text... Varying text... Varying text... Varying text.
通过 cygwin 运行 vagrant up 时遇到以下错误。 stderr: /bin/bash: /home/vagrant/.ansible/tmp/ansible-tmp-14872260
今天要向小伙伴们介绍的是一个能够快速地把数据制作成可视化、交互页面的 Python 框架:Streamlit,分分钟让你的数据动起来! 犹记得我在做机器学习和数据分析方面的毕设时,
我是 vagrant 的新手,正在尝试将第二个磁盘添加到我正在用 vagrant 制作的虚拟机中。 我想出了如何在第一次启动虚拟机时连接磁盘,但是当我关闭机器时 然后再次备份(使用 'vagrant
我是一名优秀的程序员,十分优秀!