使用MVC,我想从我的cshtml视图中检索一个值并将其存储在我的SignalR中心

时间:2014-09-10 12:02:54

标签: signalr postback

我目前正在设计游戏,需要从我的视图中检索一个值并将其发送到我的SingalR中心。

我想将从我的视图中检索到的值存储在我的集线器中的全局变量中。

示例如下:

查看

<html>
    Viewbag.a=1 //the value i want to send to the hub
<html>

集线器

int a; //global variable in hub

public void retrieve(int num) //my method to store value
{
    a=num;
}

1 个答案:

答案 0 :(得分:0)

这是非常基本的,假设您已连接到集线器。我认为代码不言自明:

<script>
    var num = @ViewBag.a;

    //connect to hub here

    proxy.server.retrieve(num);
</script>