gpt4 book ai didi

c# - SignalR 无法读取未定义的属性客户端

转载 作者:IT王子 更新时间:2023-10-29 03:52:07 25 4
gpt4 key购买 nike

我正在尝试将 SignalR 添加到我的项目 (ASPNET MVC 4)。但我无法让它发挥作用。

在下图中,您可以看到我收到的错误。 image我已经阅读了很多 stackoverflow 帖子,但没有一个能解决我的问题。

这是我目前所做的:

1) Ran Install-Package Microsoft.AspNet.SignalR -Pre
2) Added RouteTable.Routes.MapHubs(); in Global.asax.cs Application_Start()
3) If I go to http://localhost:9096/Gdp.IServer.Web/signalr/hubs I can see the file content
4) Added <modules runAllManagedModulesForAllRequests="true"/> to Web.Config
5) Created folder Hubs in the root of the MVC application
6) Moved jquery and signalR scripts to /Scripts/lib folder (I'm not using jquery 1.6.4, I'm using the latest)

这是我的 Index.cshtml

<h2>List of Messages</h2>

<div class="container">
<input type="text" id="message" />
<input type="button" id="sendmessage" value="Send" />
<input type="hidden" id="displayname" />
<ul id="discussion">
</ul>
</div>

@section pageScripts
{
<!--Reference the SignalR library. -->
<script src="@Url.Content("~/Scripts/jquery.signalR-1.0.0-rc1.min.js")" type="text/javascript"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script type="text/javascript" src="~/signalr/hubs"></script>
<script src="@Url.Content("~/Scripts/map.js")" type="text/javascript"></script>
}

这是我的 IServerHub.cs 文件(位于 Hubs 文件夹内)

namespace Gdp.IServer.Ui.Web.Hubs
{
using Microsoft.AspNet.SignalR.Hubs;
[HubName("iServerHub")]
public class IServerHub : Hub
{
public void Send(string name, string message)
{
Clients.All.broadcastMessage(name, message);
}
}
}

这是 map.js

$(function () {

// Declare a proxy to reference the hub.
var clientServerHub = $.connection.iServerHub;

// Create a function that the hub can call to broadcast messages.
clientServerHub.client.broadcastMessage = function (name, message) {
$('#discussion').append('<li><strong>' + name + '</strong>:&nbsp;&nbsp;' + message + '</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 () {
// Html encode display name and message.
var encodedName = $('<div />').text($('#displayname').val()).html();
var encodedMsg = $('<div />').text($('#message').val()).html();

// Call the Send method on the hub.
clientServerHub.server.send(encodedName, encodedMsg);

// Clear text box and reset focus for next comment.
$('#message').val('').focus();
});
});
});

我看到的 SignalR 引用的 DLL 是:

  1. Microsoft.AspNet.SignalR.Core
  2. Microsoft.AspNet.SignalR.Owin
  3. Microsoft.AspNet.SignalR.SystemWeb

有什么想法可以让它发挥作用吗?因为脚本位于/Script/lib 文件夹中,我是否应该进行任何更改?

注意我正在按照找到的说明进行操作 here关于如何设置温莎城堡以使其与 SignalR 一起使用,似乎无法创建代理并且我遇到了同样的错误:

Cannot read property client of undefined

意味着没有创建到集线器的代理

我在服务器上是这样的

public class IncidentServerHub : Hub

在客户端也是这样

var clientServerHub = $.connection.incidentServerHub;

同样,我可以在这里看到动态创建的文件:

/GdpSoftware.Server.Web/signalr/hubs

那么,为什么没有创建代理呢?

最佳答案

我通过更改我的 js 代码解决了这个问题: var myHub = $.connection.SentimentsHub;var myHub = $.connection.sentimentsHub;

因此,如果您有一些类名为 TestHub 的集线器,则必须在 js 中使用 testHub(首字母小写)名称

关于c# - SignalR 无法读取未定义的属性客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14146913/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com