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 に答える