1

SignalR を使用する ASP.NET MVC アプリがあります。SignalR を処理するクライアント スクリプトがインラインの場合は問題なく動作しますが、スクリプトを .js ファイルに抽出すると、サーバーからの呼び出しを受信しません。

@model LiveContentSample.Models.Entry

@{
    ViewBag.Title = "Details SignalR";
    ViewBag.EntryId = Model.Id;
}

<h2>Details with PartialView SignalR Comments</h2>

<fieldset>
    <legend>Entry</legend>

    <div class="display-label">
        @Html.DisplayNameFor(model => model.Title)
    </div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Title)
    </div>

    <div class="display-label">
        @Html.DisplayNameFor(model => model.Content)
    </div>
    <div class="display-field">
        @Html.DisplayFor(model => model.Content)
    </div>
</fieldset>
<p>
    @Html.ActionLink("Edit", "Edit", new { id = Model.Id }) |
    @Html.ActionLink("Back to List", "Index")
</p>

@Html.Action("_GetForEntryWithSignalR", "Comment", new { entryId = @Model.Id })
@section scripts {
    <script src="~/Scripts/jquery-1.8.2.js"></script>
    <script src="~/Scripts/jquery-ui-1.8.24.js"></script>
    <script src="~/Scripts/jquery.signalR-1.1.3.min.js"></script>
    <script src="~/signalr/hubs"></script>
@*    <script type="text/javascript" src="~/Scripts/CommentsSignalR.js"></script>*@
    <script>
        $(function () {
            var entryId = '@ViewBag.EntryId';
            var commentHub = $.connection.commentHub;

            commentHub.client.send = function (content) {
                $("#comments-list").append("<li>" + content + "</li>");
            };

            $.connection.hub.start().done(function () {
                commentHub.server.register(entryId);

                $("#add-comment").click(function () {
                    commentHub.server.addComment(entryId, $("#content").val());
                });
            });
        });
    </script>
}

しかし、最終的なスクリプトを .js ファイルに移動すると機能しません。何か案は?

4

1 に答える 1

0

@ViewBag.EntryIdRazor ディレクティブです。スクリプトを JS ファイルに移動すると、Razor は何も実行しなくなります。このスクリプトを別のファイルに移動する必要がある場合は、何らかの方法でそのエントリ ID をスクリプトに渡す必要があります。

于 2013-10-09T22:34:50.120 に答える