3

我在剃须刀部分遇到了一些麻烦。

@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

4

1 回答 1

4

删除末尾的第二个 "<div class="btn-group"">看看是否有帮助。Razor 引擎非常挑剔,像这样愚蠢的事情可能会导致它继续寻找字符串,并且由于其他所有内容都匹配,因此关闭}将在 a细绳。

于 2013-01-21T19:28:57.753 回答