私はこれを取得できます tutorial 新しいプロジェクトで動作しますが、私の既存のプロジェクトでは動作しません。
私のプロジェクトは、web.configファイルに次の属性を持つASP.Net MVC 4 Webアプリケーションです。
<appSettings>
<add key="webpages:Enabled" value="true"/>
</appSettings>
これは、私のアプリケーションがクライアント側でAngularJSを使用する単一ページアプリケーションであるためです。私のアプリケーションの唯一のページはindex.cshtmlで、それにsignalRの関連コードを追加しました。
<!-- signalR chat -->
<script src="~/Scripts/jquery.signalR-1.0.0.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="/signalr/hubs"></script>
<!--Add script to update the page and send messages.-->
<script type="text/javascript">
$(function () {
// Declare a proxy to reference the hub.
var chat = $.connection.chatHub;
// Create a function that the hub can call to broadcast messages.
chat.client.broadcastMessage = function (name, message) {
// Html encode display name and message.
var encodedName = $('<div />').text(name).html();
var encodedMsg = $('<div />').text(message).html();
// Add the message to the page.
$('#discussion').append('<li><strong>' + encodedName
+ '</strong>: ' + encodedMsg + '</li>');
};
// Get the user name and store it to prepend to messages.
$('#displayname').val(Prompt('Enter your name:', ''));
// Set initial focus to message input box.
$('#message').focus();
// Start the connection.
$.connection.hub.start().done(function () {
$('#sendmessage').click(function () {
// Call the Send method on the hub.
chat.server.send($('#displayname').val(), $('#message').val());
// Clear text box and reset focus for next comment.
$('#message').val('').focus();
});
});
});
</script>
次に、ChatHub.csファイルを取得します。
public class ChatHub : Hub
{
public void Send(string name, string message)
{
// Call the broadcastMessage method to update clients.
Clients.All.broadcastMessage(name, message);
}
}
そして最後に、global.asax:
protected void Application_Start()
{
RouteTable.Routes.MapHubs();
BundleConfig.RegisterBundles(BundleTable.Bundles);
}
アプリケーションを実行すると、/ signalr/hubsファイルが生成されません。ファイルをリクエストすると404が表示され、次の行でクラッシュします。
chat.client.broadcastMessage = function (name, message) { ....
前の行でchatHubが見つからなかったため、chatはnullでした。
var chat = $.connection.chatHub;
誰かが私のコードの何が問題になっているのか知っていますか?
[〜#〜]更新[〜#〜]
私は行を変更することで問題を解決しました::
<script src="/signalr/hubs"></script>
に
<script src="~/signalr/hubs"></script>
私は行を変更することで問題を解決しました::
<script src="/signalr/hubs"></script>
に
<script src="~/signalr/hubs"></script>
また、/ signalr/hubsが生成されない理由は、OWIN起動構成でSignalRをマップすることを忘れているためです。
public class Startup
{
public void Configuration(IAppBuilder appBuilder){
...
appBuilder.MapSignalR();
...
}
...
私の場合は、ChatHubクラスが公開としてマークされていなかったためです。
ハブファイルが生成されないという同様の問題がありました。 OPは 次の手順に従っているようです 。私が問題を修正した方法は、jqueryインクルードに関係していました。以下にリンクしたチュートリアルは、jquery 1.6.4およびjquery-signalrバージョン2.1.0で作成されました。 Visual StudioがScriptsフォルダーを生成したとき、jqueryバージョン1.10.2とjquery-signalrバージョン2.0.2を使用していました。
これを修正した方法は、単にindex.htmlファイルを編集することでした。 ChromeのJavaScriptコンソールウィンドウでCtrl + Shift + Jを使用してエラーを表示できることに注意してください。
私にとっての解決策は、すべてのpackagesを再インストールし、すべてのdependenciesを復元することでした。
Nuget powershellコンソールで、このコマンドを使用します。
Update-Package -Reinstall
SignalR Readmeファイルにこの問題に関するメモがあることを付け加えておきます。また、signalRページがPartialViewにある場合は、いくつかのスクリプトをマスターページに配置する必要があります。
Please see http://go.Microsoft.com/fwlink/?LinkId=272764 for more information on using SignalR.
Upgrading from 1.x to 2.0
-------------------------
Please see http://go.Microsoft.com/fwlink/?LinkId=320578 for more information on how to
upgrade your SignalR 1.x application to 2.0.
Mapping the Hubs connection
----------------------------
To enable SignalR in your application, create a class called Startup with the following:
using Microsoft.Owin;
using Owin;
using MyWebApplication;
namespace MyWebApplication
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
}
}
}
Getting Started
---------------
See http://www.asp.net/signalr/overview/getting-started for more information on how to get started.
Why does ~/signalr/hubs return 404 or Why do I get a JavaScript error: 'myhub is undefined'?
--------------------------------------------------------------------------------------------
This issue is generally due to a missing or invalid script reference to the auto-generated Hub JavaScript proxy at '~/signalr/hubs'.
Please make sure that the Hub route is registered before any other routes in your application.
In ASP.NET MVC 4 you can do the following:
<script src="~/signalr/hubs"></script>
If you're writing an ASP.NET MVC 3 application, make sure that you are using Url.Content for your script references:
<script src="@Url.Content("~/signalr/hubs")"></script>
If you're writing a regular ASP.NET application use ResolveClientUrl for your script references or register them via the ScriptManager
using a app root relative path (starting with a '~/'):
<script src='<%: ResolveClientUrl("~/signalr/hubs") %>'></script>
If the above still doesn't work, you may have an issue with routing and extensionless URLs. To fix this, ensure you have the latest
patches installed for IIS and ASP.NET.
私の場合、私は欠落していました:
_ app.MapSignalR();
_
startup.csにあるpublic void Configuration(IAppBuilder app)
関数内