定义 Hub 的 Controller 类
public abstract class MonitoringProfileLogChartController : Croem.NotificationManager.Website.Base.BaseController.BaseController
{
public ActionResult Index()
{
BusinessLogicReturn result = new ProcessBusinessLogic.Logic().GetRegisteredContexts();
return base.TransalateToAction(result);
}
public ActionResult LiveMonitoringProfileLogChart()
{
return View();
}
public ActionResult test()
{
return View();
}
**below is rest of the code of controller where our focus should be**
public JsonResult GetMonitoringProfileLogChart(string FromDate, string ToDate, int ContextId)
{
BusinessLogicReturn result = new ProcessBusinessLogic.Logic().GetMonitoringProfileLogChart(FromDate, ToDate, ContextId);
return Json(result.Model, JsonRequestBehavior.AllowGet);
}
public JsonResult GetMonitoringProfileLiveLogChart(string FromTime, string ToTime, string DataMinutes)
{
BusinessLogicReturn result = new ProcessBusinessLogic.Logic().GetMonitoringProfileLiveLogChart(FromTime, ToTime, DataMinutes);
IHubContext context = GlobalHost.ConnectionManager.GetHubContext<MyHub>();
context.Clients.All.addMessage(result.Model);
var hub = new MyHub();
hub.Send("", "");
return Json(result.Model, JsonRequestBehavior.AllowGet);
}
public JsonResult GetMonitoringProfileCombinationChart(string FromTime, string ToTime)
{
BusinessLogicReturn result = new ProcessBusinessLogic.Logic().GetMonitoringProfileCombinationChart(FromTime, ToTime);
return Json(result.Model, JsonRequestBehavior.AllowGet);
}
}
public class MyHub : Hub
{
IHubContext context = GlobalHost.ConnectionManager.GetHubContext<MyHub>();
public void Send(string name, string message)
{
BusinessLogicReturn result = new ProcessBusinessLogic.Logic().GetMonitoringProfileLiveLogChart(null, null, null);
context.Clients.All.addMessage(result.Model);
}
public void test()
{
BusinessLogicReturn result = new ProcessBusinessLogic.Logic().GetMonitoringProfileLiveLogChart(null, null, null);
context.Clients.All.addMessage(result.Model);
}
}
用于映射服务器 url 的控制台应用程序
class Program
{
static void Main(string[] args)
{
string info = LoggingServer.Open();
Console.WriteLine(info);
string url = "http://localhost:8080";
using (WebApp.Start<Startup>(url))
{
Console.WriteLine("Server running on {0}", url);
var hubs = new Croem.NotificationManager.Website.Base.Controllers.MyHub();
Console.ReadLine();
}
LoggingServer.Close();
}
class Startup
{
public void Configuration(IAppBuilder app)
{
// Turn cross domain on
var config = new HubConfiguration { EnableCrossDomain = true };
// This will map out to http://localhost:8080/signalr by default
app.MapHubs(config);
}
}
}
客户端页面
<!DOCTYPE html>
<html>
<head>
<title>SignalR Live Chat</title>
</head>
<body>
<div class="container">
<input type="text" id="message" />
<input type="button" id="sendmessage" value="Send" />
<input type="hidden" id="displayname" />
<strong>Error Count</strong>
<input type="text" id="Error_count" value="0" />
<ul id="discussion"></ul>
</div>
<!--Script references. -->
<!--Reference the jQuery library. -->
<script src="Scripts/jquery-1.7.1.min.js"></script>
<!--Reference the SignalR library. -->
<script src="Scripts/jquery.signalR-1.1.3.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="http://localhost:8080/signalr/hubs"></script>
<!--Add script to update the page and send messages.-->
<script type="text/javascript">
var chart;
var timer;
$(function () {
Highcharts.setOptions({
global: {
useUTC: false
}
});
//Set the hubs URL for the connection
$.connection.hub.url = "http://localhost:8080/signalr";
// Declare a proxy to reference the hub.
var chat = $.connection.myHub;
// Create a function that the hub can call to broadcast messages.
chat.client.addMessage = function (data) {
dataRecieved(data);
clearInterval(timer);
timer = setInterval(function () {
dataNotRecieved();
}, 10000);
};
$.connection.hub.logging = true;
$.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();
});
});
$.ajax({
type: "GET",
dataType: "json",
data: {
DataMinutes: 5,
FromTime: null,
ToTime: null
},
url: "@Url.Action("GetMonitoringProfileLiveLogChart", "MonitoringProfileLogChart")",
success: function (data) {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'spline',
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
},
title: {
text: 'Live Profile Monitoring'
},
xAxis: {
type: 'datetime',
tickPixelInterval: 150
},
yAxis: {
title: {
text: 'Value'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
formatter: function () {
return '<b>' + this.series.name + '</b><br/>' +
Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) + '<br/>' +
Highcharts.numberFormat(this.y, 2);
}
},
legend: {
enabled: true
},
exporting: {
enabled: false
},
series: data.series,
});
}
});
timer = setInterval(function () {
dataNotRecieved();
}, 10000);
function dataNotRecieved() {
var shift = false;
for (var j = 0; j < chart.series.length; j++) {
if (chart.series[j].data.length < 50) {
shift = false;
}
else {
shift = true;
}
chart.series[j].addPoint([new Date().getTime() - 4 * 1000 * 60 * 60, 0], true, shift);
}
}
function dataRecieved(data) {
// checking if series exsist in chart but is not in data coming from ajax call . and if it does not exsist add that series point with zero
var series_name_exist = 0;
var series_exist = 0;
var index = 0;
var shift = false;
var length = chart.series.length;
for (var j = 0; j < chart.series.length; j++) {
for (var k = 0; k < data.series.length; k++) {
if (chart.series[j].name == data.series[k].name) {
series_name_exist = 1;
break;
}
}
if (series_name_exist == 0) {
if (chart.series[j].data.length < 50) {
shift = false;
}
else {
shift = true;
}
chart.series[j].addPoint([new Date().getTime() - 4 * 1000 * 60 * 60, 0], true, shift);
}
else {
series_name_exist = 0;
}
}
// if series exist add point otherwise add series
for (var k = 0; k < data.series.length; k++) {
for (var j = 0; j < chart.series.length; j++) {
if (chart.series[j].name == data.series[k].name) {
series_exist = 1;
index = j;
break;
}
}
if (series_exist == 1) {
if (chart.series[index].data.length < 50) {
shift = false;
}
else {
shift = true;
}
//chart.series[index].addPoint([data.series[k].time, data.series[k].count], true, shift);
chart.series[index].addPoint([new Date().getTime() - 4 * 1000 * 60 * 60, data.series[k].count], true, shift);
series_exist = 0;
}
else {
chart.addSeries({ name: '' + data.series[k].name + '', data: [] });
//chart.series[length].addPoint([data.series[k].time, data.series[k].count], true);
chart.series[length].addPoint([new Date().getTime() - 4 * 1000 * 60 * 60, data.series[k].count], true);
length = length + 1;
}
}
}
$('#message').focus();
// Start the connection.
});
</script>
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
</body>
</html>
实际画面
第一个选择的类是用于映射服务器 url 的控制台应用程序类
第二个选定类是定义集线器的 Controller 类
当我创建一个调用 MyHub 的对象并从 Controller 调用它时,我遇到了一个问题,该函数正在被调用,但另一方面,当我按下屏幕上的发送按钮时,我的 HTML 页面上没有显示任何内容,它调用了相同的函数但输出也显示在页面上。请告诉我为什么会发生这种情况以及如何从 Controller 调用函数以便输出也显示在 HTML 页面上。我想我没有指定它应该写的中心 URL,这就是它的原因当我直接从 Controller 类发送它而不是从客户端调用集线器函数时不调用客户端函数,因为在客户端指定了聊天 URL,我认为这就是为什么当我从客户端页面调用发送函数时客户端添加消息被执行。我是无法找到指定集线器地址的方法
当我按下屏幕上的发送按钮时,将显示此日志消息:SignalR:触发中心“MyHub”上的客户端中心事件“addMessage”。
但是当我在“GetMonitoringProfileLiveLogChart”函数中直接从 Controller 调用它时,不会显示此日志消息。
SignalR 版本 1.1.3
最佳答案
在我看来,页面上不应显示任何内容,这是因为在启动集线器之前没有为集线器绑定(bind)的客户端功能。
因此,要解决您的问题,只需在执行 $.connection.hub.start 之前将您的“addMessage”函数添加到客户端中心:
chat.client.addMessage = function() {...}
$.connection.hub.start().done(function() {...});
接下来你的代码中有一些错误:
$(function() {....}) 本质上是 document.ready,但是你也在做 $( document).ready(function() {...}) 里面。Clients.All.addMessage(...)。关于javascript - 客户端函数未被调用 SignalR,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18314671/
我想在一个没有Sass引擎的类中使用Sass颜色函数。我已经在项目中使用了sassgem,所以我认为搭载会像以下一样简单:classRectangleincludeSass::Script::FunctionsdefcolorSass::Script::Color.new([0x82,0x39,0x06])enddefrender#hamlengineexecutedwithcontextofself#sothatwithintemlateicouldcall#%stop{offset:'0%',stop:{color:lighten(color)}}endend更新:参见上面的#re
我正在尝试用ruby中的gsub函数替换字符串中的某些单词,但有时效果很好,在某些情况下会出现此错误?这种格式有什么问题吗NoMethodError(undefinedmethod`gsub!'fornil:NilClass):模型.rbclassTest"replacethisID1",WAY=>"replacethisID2andID3",DELTA=>"replacethisID4"}end另一个模型.rbclassCheck 最佳答案 啊,我找到了!gsub!是一个非常奇怪的方法。首先,它替换了字符串,所以它实际上修改了
我正在尝试编写一个将文件上传到AWS并公开该文件的Ruby脚本。我做了以下事情:s3=Aws::S3::Resource.new(credentials:Aws::Credentials.new(KEY,SECRET),region:'us-west-2')obj=s3.bucket('stg-db').object('key')obj.upload_file(filename)这似乎工作正常,除了该文件不是公开可用的,而且我无法获得它的公共(public)URL。但是当我登录到S3时,我可以正常查看我的文件。为了使其公开可用,我将最后一行更改为obj.upload_file(file
我有一些代码在几个不同的位置之一运行:作为具有调试输出的命令行工具,作为不接受任何输出的更大程序的一部分,以及在Rails环境中。有时我需要根据代码的位置对代码进行细微的更改,我意识到以下样式似乎可行:print"Testingnestedfunctionsdefined\n"CLI=trueifCLIdeftest_printprint"CommandLineVersion\n"endelsedeftest_printprint"ReleaseVersion\n"endendtest_print()这导致:TestingnestedfunctionsdefinedCommandLin
如何在ruby中调用C#dll? 最佳答案 我能想到几种可能性:为您的DLL编写(或找人编写)一个COM包装器,如果它还没有,则使用Ruby的WIN32OLE库来调用它;看看RubyCLR,其中一位作者是JohnLam,他继续在Microsoft从事IronRuby方面的工作。(估计不会再维护了,可能不支持.Net2.0以上的版本);正如其他地方已经提到的,看看使用IronRuby,如果这是您的技术选择。有一个主题是here.请注意,最后一篇文章实际上来自JohnLam(看起来像是2009年3月),他似乎很自在地断言RubyCL
我正在尝试使用boilerpipe来自JRuby。我看过guide从JRuby调用Java,并成功地将它与另一个Java包一起使用,但无法弄清楚为什么同样的东西不能用于boilerpipe。我正在尝试基本上从JRuby中执行与此Java等效的操作:URLurl=newURL("http://www.example.com/some-location/index.html");Stringtext=ArticleExtractor.INSTANCE.getText(url);在JRuby中试过这个:require'java'url=java.net.URL.new("http://www
我需要一些关于TDD概念的帮助。假设我有以下代码defexecute(command)casecommandwhen"c"create_new_characterwhen"i"display_inventoryendenddefcreate_new_character#dostufftocreatenewcharacterenddefdisplay_inventory#dostufftodisplayinventoryend现在我不确定要为什么编写单元测试。如果我为execute方法编写单元测试,那不是几乎涵盖了我对create_new_character和display_invent
如何在Ruby中按名称传递函数?(我使用Ruby才几个小时,所以我还在想办法。)nums=[1,2,3,4]#Thisworks,butismoreverbosethanI'dlikenums.eachdo|i|putsiend#InJS,Icouldjustdosomethinglike:#nums.forEach(console.log)#InF#,itwouldbesomethinglike:#List.iternums(printf"%A")#InRuby,IwishIcoulddosomethinglike:nums.eachputs在Ruby中能不能做到类似的简洁?我可以只
在应用开发中,有时候我们需要获取系统的设备信息,用于数据上报和行为分析。那在鸿蒙系统中,我们应该怎么去获取设备的系统信息呢,比如说获取手机的系统版本号、手机的制造商、手机型号等数据。1、获取方式这里分为两种情况,一种是设备信息的获取,一种是系统信息的获取。1.1、获取设备信息获取设备信息,鸿蒙的SDK包为我们提供了DeviceInfo类,通过该类的一些静态方法,可以获取设备信息,DeviceInfo类的包路径为:ohos.system.DeviceInfo.具体的方法如下:ModifierandTypeMethodDescriptionstatic StringgetAbiList()Obt
说在前面这部分我本来是合为一篇来写的,因为目的是一样的,都是通过独立按键来控制LED闪灭本质上是起到开关的作用,即调用函数和中断函数。但是写一篇太累了,我还是决定分为两篇写,这篇是调用函数篇。在本篇中你主要看到这些东西!!!1.调用函数的方法(主要讲语法和格式)2.独立按键如何控制LED亮灭3.程序中的一些细节(软件消抖等)1.调用函数的方法思路还是比较清晰地,就是通过按下按键来控制LED闪灭,即每按下一次,LED取反一次。重要的是,把按键与LED联系在一起。我打算用K1来作为开关,看了一下开发板原理图,K1连接的是单片机的P31口,当按下K1时,P31是与GND相连的,也就是说,当我按下去时