1

我有嵌套并与 html 和 javascript 混合的剃刀语法。

它运行良好,除了当我执行自动代码格式时,它}总是被推到不合适的位置。

@section js{
    <script type="text/javascript">
        $(document).ready(function () {

            @if (ViewBag.Searched && ViewBag.Found)
            {
                @:$('#found').show(); $('#permit-info').show();

                @if (ViewBag.PendingRequest)
                {
                    @:$('#request-info').hide(); $('#report-info').show();
                }
                else
                {
                    @:$('#request-info').show(); $('#report-info').hide();
                }
            }
            else
            {
                @if (ViewBag.Searched)
                {
                    @:$('#not-found').show();
                            } // <----- PROBLEM. this } doesn't stay at the right place.
            }
        });
    </script>
}
4

1 回答 1

3

@你在这条线上有一个额外的:

@if (ViewBag.Searched)

这行:

@if (ViewBag.PendingRequest)

因为您已经在剃须刀代码中(由父if/else语句管理)。

实际上,这仍然会破坏格式。虽然,如果您尝试使用<text>标签而不是@:它的作品。试试这个:

$(document).ready(function () {

        @if (ViewBag.Searched && ViewBag.Found)
        {
            <text>$('#found').show(); $('#permit-info').show();</text>

            if (ViewBag.PendingRequest)
            {
                <text>$('#request-info').hide(); $('#report-info').show();</text>
            }
            else
            {
                <text>$('#request-info').show(); $('#report-info').hide();</text>
            }
        }
        else
        {
            if (ViewBag.Searched)
            {
                <text>$('#not-found').show();</text>
            }
        }
    });

请注意:Visual Studio 总是很差地缩进剃刀视图 :)

于 2013-03-14T15:50:46.793 回答