我正在按照本教程将SignalR集成到我的项目http://venkatbaggu.com/signalr-database-update-notifications-asp-net-mvc-usiing-sql-dependency/
所以基本上这是我想要展示我的桌子的视图。
@{
ViewBag.Title = "PatientInfo";
}
<h2>PatientInfo</h2>
<h3>@ViewBag.pName</h3>
<h5>@ViewBag.glucoseT</h5>
@if (Session["LogedUserFirstname"] != null)
{
<text>
<p>Welcome @Session["LogedUserFirstname"].ToString()</p>
</text>
@Html.ActionLink("Log Out", "Logout", "Home")
<div class="row">
<div class="col-md-12">
<div id="messagesTable"></div>
</div>
</div>
<script src="/Scripts/jquery.signalR-2.2.0.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="/SignalR/Hubs"></script>
<script type="text/javascript">
$(function () {
// Declare a proxy to reference the hub.
var notifications = $.connection.dataHub;
//debugger;
// Create a function that the hub can call to broadcast messages.
notifications.client.updateMessages = function () {
getAllMessages()
};
// Start the connection.
$.connection.hub.start().done(function () {
alert("connection started")
getAllMessages();
}).fail(function (e) {
alert(e);
});
});
function getAllMessages() {
var tbl = $('#messagesTable');
$.ajax({
url: '/home/GetMessages',
contentType: 'application/html ; charset:utf-8',
type: 'GET',
dataType: 'html'
}).success(function (result) {
tbl.empty().append(result);
}).error(function () {
});
}
</script>
}
我的项目正在运行,但桌子根本没有出现。我开始粘贴视图,因为我认为脚本不是首先执行的;即使我尝试在
之后直接添加警报消息,也不会显示警报消息$(function () {
alert("I am an alert box!");
这是我的Layout.cshtml文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title - My ASP.NET MVC Application</title>
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width" />
@Styles.Render("~/Content/css")
<link href="~/Content/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="~/Content/DataTables/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css" />
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<header>
<div class="content-wrapper">
</div>
</header>
<div id="body">
@RenderSection("featured", required: false)
<section class="content-wrapper main-content clear-fix">
@RenderBody()
</section>
</div>
<footer>
<div class="content-wrapper">
<div class="float-left">
<p>© @DateTime.Now.Year - My ASP.NET MVC Application</p>
</div>
</div>
</footer>
<script src="~/Scripts/jquery-1.9.1.min.js"></script>
<script src="~/Scripts/bootstrap.min.js"></script>
<script src="~/Scripts/DataTables/jquery.dataTables.min.js"></script>
<script src="~/Scripts/jquery.signalR-2.2.0.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="SignalR/Hubs"></script>
<script type="text/javascript">
$(document).ready(function () {
$("#p_table").dataTable();
});
</script>
@RenderSection("scripts", required: false)
</body>
</html>
我正在使用Visual Studio 2012,MVC4。 请帮助..
答案 0 :(得分:1)
确保您已从视图的scripts
部分内的视图中放置所有脚本标记:
@section scripts {
... your <script> tags come here
}
警报不起作用的原因是因为您已将它们直接放在视图正文中,并在布局的@RenderBody()
调用时呈现。但正如您所看到的,只有在此布局结束时,我们才能引用jQuery和signalr等脚本。
现在它们将出现在正确的位置:@RenderSection("scripts", required: false)
。
顺便说一下,使用webbrowser中的控制台窗口查看可能存在的潜在脚本错误。例如,在您的情况下,它将显示jQuery未定义错误。
另一个评论:不要两次包含signalR脚本:现在您的视图中似乎包含jquery.signalR-2.2.0.js
,而您的版面中包含jquery.signalR-2.2.0.min.js
。