gpt4 book ai didi

asp.net - ASP.Net MVC 中长时间运行的服务器调用的进度条

转载 作者:行者123 更新时间:2023-12-03 12:05:40 25 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

2年前关闭。




Improve this question




我只想在长时间运行服务器调用时创建一个进度条。当 Controller 正在执行长时间运行的工作时,我无法向 Controller 创建 ajax 发布请求。

我想创建一个额外的 Action 来获取当前长时间运行任务的实际语句。
我尝试在 ajax 请求中创建轮询,然后我可以从服务器端返回状态并将其显示在客户端进度条中。有任何想法吗 ?

最佳答案

正确且最简单的方法是使用 SignalR。请在 https://www.nuget.org/packages/Microsoft.AspNet.SignalR/2.1.2 下载 Microsoft SignalR

在名为 hubs 的项目路径中的单独文件夹中创建一个 hub 类,将两个类文件添加到 hubs 文件夹中

启动文件

using Owin;
using Microsoft.Owin;
[assembly: OwinStartup(typeof(SignalRChat.Startup))]
namespace SignalRChat
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
// Any connection or hub wire up and configuration should go here
app.MapSignalR();
}
}
}

进度中心
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Web;
using Microsoft.AspNet.SignalR;

namespace RealTimeProgressBar
{
public class ProgressHub : Hub
{

public string msg = "Initializing and Preparing...";
public int count = 1;

public static void SendMessage(string msg , int count)
{
var message = "Process completed for " + msg;
var hubContext = GlobalHost.ConnectionManager.GetHubContext<ProgressHub>();
hubContext.Clients.All.sendMessage(string.Format(message), count);
}

public void GetCountAndMessage()
{
Clients.Caller.sendMessage(string.Format(msg), count);
}
}
}

在 Controller 中,
// assemblies
using Microsoft.AspNet.SignalR;
using RealTimeProgressBar;


//call this method inside your working action
ProgressHub.SendMessage("initializing and preparing", 2);

在 View 中,
<!--The jQuery library is required and is referenced by default in _Layout.cshtml. -->
<!--Reference the SignalR library. -->
<script src="~/Scripts/jquery.signalR-2.1.2.min.js"></script>
<!--Reference the autogenerated SignalR hub script. -->
<script src="~/signalr/hubs"></script>
<!--SignalR script to update the chat page and send messages.-->
<script type="text/javascript">
$(document).ready(function () {

$("#progressBar").kendoProgressBar({
min: 0,
max: 100,
type: "percent",
});
});

function StartInvoicing()
{
var progressNotifier = $.connection.progressHub;

// client-side sendMessage function that will be called from the server-side
progressNotifier.client.sendMessage = function (message, count) {
// update progress
UpdateProgress(message, count);
//alert(message);
};

// establish the connection to the server and start server-side operation
$.connection.hub.start().done(function () {
// call the method CallLongOperation defined in the Hub
progressNotifier.server.getCountAndMessage();
});
}

// Update the progress bar
function UpdateProgress(message, count) {
var result = $("#result");
result.html(message);
$("#progressBar").data("kendoProgressBar").value(count);
}
</script>

有关更多详细信息,请在谷歌的帮助下引用一些现有文章

关于asp.net - ASP.Net MVC 中长时间运行的服务器调用的进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27313550/

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