Web頁面實現後臺數據處理進度與剩餘時間的顯示

来源:http://www.cnblogs.com/s0611163/archive/2016/06/01/5550391.html
-Advertisement-
Play Games

1、頁面後臺代碼添加如下靜態變數: 2、在處理數據的開始,初始化total和startTime變數: 3、在處理數據過程中,不斷累加cur: 4、前端每隔200毫秒獲取進度: 5、後臺計算進度: 效果圖(文字錯了,不是“導入進度”,而是“數據處理進度:”): ...


    1、頁面後臺代碼添加如下靜態變數:

/// <summary>
/// 總數
/// </summary>
private static double total = 0;
/// <summary>
/// 當前進度
/// </summary>
private static int cur = 0;
/// <summary>
/// 錯誤信息
/// </summary>
private static string errMsg = string.Empty;
/// <summary>
/// 開始時間
/// </summary>
private static DateTime startTime = DateTime.Now;

    2、在處理數據的開始,初始化total和startTime變數:

total = int.Parse(dataSet.Tables[0].Rows[0][0].ToString());
startTime = DateTime.Now;

    3、在處理數據過程中,不斷累加cur:

cur++;

    4、前端每隔500毫秒獲取進度:

<script type="text/javascript">
    //更新進度
    function refreshProcess() {
        var itv = setInterval(function () {
            $.ajax({
                url: "ExcelLeadIn.aspx?action=getProcess&t=" + new Date().valueOf(),
                type: "POST",
                data: {},
                success: function (data) {
                    if (data == "導入進度:100.00%") {
                        clearInterval(itv);
                        $("#msg").html(data);
                        alert("導入成功");
                    } else {
                        if (data.indexOf("錯誤:") == 0) {
                            clearInterval(itv);
                        }
                        $("#msg").html(data);
                    }
                }
            });
        }, 500);
    }
    refreshProcess();
</script>

    5、後臺計算進度:

protected void Page_Load(object sender, EventArgs e)
{
    string result = string.Empty;

    if (Request["action"] == "getProcess")
    {
        try
        {
            if (string.IsNullOrEmpty(errMsg))
            {
                if (total == 0)
                {
                    result = "導入進度:0%";
                }
                else
                {
                    DateTime now = DateTime.Now;
                    TimeSpan ts = now - startTime;

                    string time = string.Empty;
                    double per = cur / total;
                    if (per > 0)
                    {
                        double totalSeconds = ts.TotalSeconds / per - ts.TotalSeconds;
                        if (totalSeconds > 60)
                        {
                            time = (int)Math.Round(totalSeconds / 60) + "";
                        }
                        else
                        {
                            time = (int)Math.Round(totalSeconds) + "";
                        }
                    }

                    string percent = (cur / total * 100).ToString("0.00");
                    if (percent == "100.00")
                    {
                        cur = 0;
                        total = 0;
                        result = string.Format("導入進度:{0}%", percent);
                    }
                    else
                    {
                        result = string.Format("導入進度:{0}%,剩餘時間:{1}", percent, time);
                    }
                }
            }
            else
            {
                result = "錯誤:" + errMsg;
            }
        }
        catch (Exception ex)
        {
            result = "錯誤:" + ex.Message;
        }
    }

    if (!string.IsNullOrEmpty(result))
    {
        Response.Write(result);
        Response.End();
    }
}

    效果圖(文字錯了,不是“導入進度”,而是“數據處理進度:”):

 

修改以支持多用戶同時導入:

    1、頁面後臺代碼添加如下靜態變數:

/// <summary>
/// 總數
/// </summary>
private static Dictionary<string, double> total = new Dictionary<string, double>();
/// <summary>
/// 當前進度
/// </summary>
private static Dictionary<string, int> cur = new Dictionary<string, int>();
/// <summary>
/// 錯誤信息
/// </summary>
private static Dictionary<string, string> errMsg = new Dictionary<string, string>();
/// <summary>
/// 開始時間
/// </summary>
private static Dictionary<string, DateTime> startTime = new Dictionary<string, DateTime>();

#region 總數
private void setTotal(string userId, double value)
{
    if (total.ContainsKey(userId))
    {
        total[userId] = value;
    }
    else
    {
        total.Add(userId, value);
    }
}
private double getTotal(string userId)
{
    if (total.ContainsKey(userId))
    {
        return total[userId];
    }
    else
    {
        return 0;
    }
}
#endregion

#region 當前進度
private void addCur(string userId)
{
    if (cur.ContainsKey(userId))
    {
        cur[userId]++;
    }
    else
    {
        cur.Add(userId, 1);
    }
}
private void setCur(string userId, int value)
{
    if (cur.ContainsKey(userId))
    {
        cur[userId] = value;
    }
    else
    {
        cur.Add(userId, value);
    }
}
private int getCur(string userId)
{
    if (cur.ContainsKey(userId))
    {
        return cur[userId];
    }
    else
    {
        return 0;
    }
}
#endregion

#region 錯誤信息
private void setErrMsg(string userId, string value)
{
    if (errMsg.ContainsKey(userId))
    {
        errMsg[userId] = value;
    }
    else
    {
        errMsg.Add(userId, value);
    }
}
private string getErrMsg(string userId)
{
    if (errMsg.ContainsKey(userId))
    {
        return errMsg[userId];
    }
    else
    {
        return string.Empty;
    }
}
#endregion

#region 開始時間
private void setStartTime(string userId, DateTime value)
{
    if (startTime.ContainsKey(userId))
    {
        startTime[userId] = value;
    }
    else
    {
        startTime.Add(userId, value);
    }
}
private DateTime getStartTime(string userId)
{
    if (startTime.ContainsKey(userId))
    {
        return startTime[userId];
    }
    else
    {
        return DateTime.Now;
    }
}
#endregion

    2、在處理數據的開始,初始化total和startTime變數:

setTotal(loginUser.USER_ID, int.Parse(dataSet.Tables[0].Rows[0][0].ToString())); //總數
setStartTime(loginUser.USER_ID, DateTime.Now); //開始時間

    3、在處理數據過程中,不斷累加cur:

addCur(loginUser.USER_ID); //進度累加

    4、前端每隔500毫秒獲取進度:

<script type="text/javascript">
    //更新進度
    function refreshProcess() {
        var itv = setInterval(function () {
            $.ajax({
                url: "ExcelLeadIn.aspx?action=getProcess&t=" + new Date().valueOf(),
                type: "POST",
                data: {},
                success: function (data) {
                    if (data == "導入進度:100.00%") {
                        clearInterval(itv);
                        $("#msg").html(data);
                        alert("導入成功");
                    } else {
                        if (data.indexOf("錯誤:") == 0) {
                            clearInterval(itv);
                        }
                        $("#msg").html(data);
                    }
                }
            });
        }, 500);
    }
    refreshProcess();
</script>

    5、後臺計算進度:

protected void Page_Load(object sender, EventArgs e)
{
    string result = string.Empty;

    if (Request["action"] == "getProcess")
    {
        try
        {
            LoginEntity loginUser = (LoginEntity)this.Session[BasePage.LOGIN_USER_KEY];
            string userId = loginUser.USER_ID;
            if (string.IsNullOrEmpty(getErrMsg(userId)))
            {
                if (getTotal(userId) == 0)
                {
                    result = "導入進度:0%";
                }
                else
                {
                    DateTime now = DateTime.Now;
                    TimeSpan ts = now - getStartTime(userId);

                    string time = string.Empty;
                    double per = getCur(userId) / getTotal(userId);
                    if (per > 0)
                    {
                        double totalSeconds = ts.TotalSeconds / per - ts.TotalSeconds;
                        if (totalSeconds > 60)
                        {
                            time = (int)Math.Round(totalSeconds / 60) + "";
                        }
                        else
                        {
                            time = (int)Math.Round(totalSeconds) + "";
                        }
                    }

                    string percent = (getCur(userId) / getTotal(userId) * 100).ToString("0.00");
                    if (percent == "100.00")
                    {
                        setCur(userId, 0);
                        setTotal(userId, 0);
                        result = string.Format("導入進度:{0}%", percent);
                    }
                    else
                    {
                        result = string.Format("導入進度:{0}%,剩餘時間:{1}", percent, time);
                    }
                }
            }
            else
            {
                result = "錯誤:" + errMsg;
            }
        }
        catch (Exception ex)
        {
            result = "錯誤:" + ex.Message;
        }
    }

    if (!string.IsNullOrEmpty(result))
    {
        Response.Write(result);
        Response.End();
    }
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 到達應用程式的每一個請求都是由控制器處理的。但要註意,不要把事務或數據存儲邏輯放到控制器中,也不要生成用戶界面。 在ASP.NET MVC框架中,控制器是含有請求處理邏輯的.NET類。其作用是封裝應用程式邏輯。也就是說,控制器要負責處理輸入請求、執行域模型上的操作,並選擇渲染給用戶的視圖。 控制器的 ...
  • 最近有客戶反饋系統導入EXECL進行數據處理超時了,我當時的第一反應,不可能啊我明明是做過性能優化的啊,怎麼還會超時呢,這是要有多少條數據才可能發生啊!於是找客戶要來了EXECL,發現有7500多條數據,備份完客戶資料庫進行代碼調試找出性能差的地方。都是一些平時老生常談的東西,可是又是很容易忽略的地 ...
  • Table中合併相同內容列的方法比較好辦,網上代碼也很多,參照了一些把它封裝成jquery 插件,調用起來還是蠻好用的。 這個地方稍微修改了下,有的時候td中內容雖然一樣,但是資料庫中的value卻是不一樣的,比如不同的公司,都有人事部,財務部, 公司A的財務部和公司B的財務部不能合併起來,所以我就 ...
  • .NET提供了很多序列化對象的方法,瞭解他們之間的區別才能更好地確定使用哪一種序列化方式並正確地使用。本文從下麵幾個方面對標題中的三種序列化方法進行了分析。 範圍:Property Or Field Or Both 可見性:Public or Private Or All 可訪問性:Readonly ...
  • 聲明:本系列為原創,分享本人現用框架,未經本人同意,禁止轉載!http://yuangang.cnblogs.com 希望大家好好一步一步做,所有的技術和項目,都毫無保留的提供,希望大家能自己跟著做一套,還有,請大家放心,只要大家喜歡,有人需要,絕對不會爛尾,我會堅持寫完~ 如果你感覺文章有幫助,點 ...
  • 1.參數化查詢模糊查詢 sql語句: create proc procegDataAp( @UserName nvarchar(50))asselect * from users where userName=@UserName 給參數賦值 1 <%@ Page Language="C#" Auto ...
  • 1.SQL註入:SQL註入攻擊是web應用程式的一種安全漏洞,可以將不安全的數據提交給運用程式,使應用程式在伺服器上執行不安全的sql命令。使用該攻擊可以輕鬆的登錄運用程式。 例如:該管理員賬號密碼為xiexun,該sql的正確語句應該為: 如果在沒有做任何處理的情況下,在登錄名文本框中輸入(xux ...
  • 常用快捷鍵 自動生成頭部註釋 代碼片段 NuGet Team Foundation 常用的VS快捷鍵 查看與設置快捷鍵 一般在菜單裡面我們直接就可以看到一些功能的快捷鍵。另外,可以依次通過 菜單欄-工具-選項-環境-鍵盤 中查看和設置對應功能的快捷鍵 推薦幾個我比較常用的快捷鍵 我用的是VS2015 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...