这个问题可能听起来很蹩脚但是。
是否有任何技术可以从服务器向客户端发送关于服务器状态的推送通知。
例如: 登录时
客户端中的通知依次:
Validating User ...
Validating Digital Certificate ...
Sorting downloadable file ...
Preparing to download ...
如果不可能,那么有没有其他优雅的方法来实现这一点。
由于
答案 0 :(得分:1)
您可以使用SignalR
:
$.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();
});
});
使用更多信息:tutorial
答案 1 :(得分:1)
你可以在这里使用signalR我提供链接看看吧。