我在剃须刀部分遇到了一些麻烦。
@section tools {
<div class="btn-group"">
<button class="btn dropdown-toggle" data-toggle="dropdown">
Update every <span id="update_time_label" class="label label-info">10 s.</span>
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#" onclick="return SelfAction.setUpdateTime(1)">1 s.</a></li>
<li><a href="#" onclick="return SelfAction.setUpdateTime(5)">5 s.</a></li>
<li><a href="#" onclick="return SelfAction.setUpdateTime(10)">10 s.</a></li>
<li><a href="#" onclick="return SelfAction.setUpdateTime(30)">30 s.</a></li>
<li><a href="#" onclick="return SelfAction.setUpdateTime(60)">60 s.</a></li>
<li><a href="#" onclick="return SelfAction.setUpdateTime(120)">120 s.</a></li>
</ul>
</div>
<button class="btn" onclick="return SelfAction.loadNewItemsNow()">Update now</button>
} <-- Can't detect
正如您在代码中看到的,它没有检测到右括号。我现在正在学习 C# 和 MVC4,但找不到任何解决方案。我不想为这个大的 HTML 块使用 viewbag。也许大 HTML 块有一些特定的结束标记?像@sectionStart
和@sectionEnd
?