這篇文章將為大家詳細(xì)講解有關(guān)asp.net core mvc中怎么實現(xiàn)偽靜態(tài)功能,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
為濰坊等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及濰坊網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都網(wǎng)站設(shè)計、成都做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、濰坊網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!mvc框架中,view代表的是視圖,它執(zhí)行的結(jié)果就是最終輸出到客戶端瀏覽器的內(nèi)容,包含html,css,js等。如果我們想實現(xiàn)靜態(tài)化,我們就需要把view執(zhí)行的結(jié)果保存成一個靜態(tài)文件,保存到指定的位置上,比如磁盤、分布式緩存等,下次再訪問就可以直接讀取保存的內(nèi)容,而不用再執(zhí)行一次業(yè)務(wù)邏輯。那asp.net core mvc要實現(xiàn)這樣的功能,應(yīng)該怎么做?答案是使用過濾器,在mvc框架中,提供了多種過濾器類型,這里我們要使用的是動作過濾器,動作過濾器提供了兩個時間點:動作執(zhí)行前,動作執(zhí)行后。我們可以在動作執(zhí)行前,先判斷是否已經(jīng)生成了靜態(tài)頁,如果已經(jīng)生成,直接讀取文件內(nèi)容輸出即可,后續(xù)的邏輯就執(zhí)行跳過。如果沒有生產(chǎn),就繼續(xù)往下走,在動作執(zhí)行后這個階段捕獲結(jié)果,然后把結(jié)果生成的靜態(tài)內(nèi)容進行保存。
那我們就來具體的實現(xiàn)代碼,首先我們定義一個過濾器類型,我們成為StaticFileHandlerFilterAttribute,這個類派生自框架中提供的ActionFilterAttribute,StaticFileHandlerFilterAttribute重寫基類提供的兩個方法:OnActionExecuted(動作執(zhí)行后),OnActionExecuting(動作執(zhí)行前),具體代碼如下:
1 2 3 4 5 6 | [AttributeUsage(AttributeTargets.Class|AttributeTargets.Method, AllowMultiple = false, Inherited = false)] public class StaticFileHandlerFilterAttribute : ActionFilterAttribute { public override void OnActionExecuted(ActionExecutedContext context){} public override void OnActionExecuting(ActionExecutingContext context){} } |
在OnActionExecuting中,需要判斷下靜態(tài)內(nèi)容是否已經(jīng)生成,如果已經(jīng)生成直接輸出內(nèi)容,邏輯實現(xiàn)如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | //按照一定的規(guī)則生成靜態(tài)文件的名稱,這里是按照area+"-"+controller+"-"+action+key規(guī)則生成 string controllerName = context.RouteData.Values["controller"].ToString().ToLower(); string actionName = context.RouteData.Values["action"].ToString().ToLower(); string area = context.RouteData.Values["area"].ToString().ToLower(); //這里的Key默認(rèn)等于id,當(dāng)然我們可以配置不同的Key名稱 string id = context.RouteData.Values.ContainsKey(Key) ? context.RouteData.Values[Key].ToString() : ""; if (string.IsNullOrEmpty(id) && context.HttpContext.Request.Query.ContainsKey(Key)) { id = context.HttpContext.Request.Query[Key]; } string filePath = Path.Combine(AppContext.BaseDirectory, "wwwroot", area, controllerName + "-" + actionName + (string.IsNullOrEmpty(id) ? "" : ("-" + id)) + ".html"); //判斷文件是否存在 if (File.Exists(filePath)) { //如果存在,直接讀取文件 using (FileStream fs = File.Open(filePath, FileMode.Open)) { using (StreamReader sr = new StreamReader(fs, Encoding.UTF8)) { //通過contentresult返回文件內(nèi)容 ContentResult contentresult = new ContentResult(); contentresult.Content = sr.ReadToEnd(); contentresult.ContentType = "text/html"; context.Result = contentresult; } } } |
在OnActionExecuted中我們需要結(jié)果動作結(jié)果,判斷動作結(jié)果類型是否是一個ViewResult,如果是通過代碼執(zhí)行這個結(jié)果,獲取結(jié)果輸出,按照上面一樣的規(guī)則,生成靜態(tài)頁,具體實現(xiàn)如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | //獲取結(jié)果 IActionResult actionResult = context.Result; //判斷結(jié)果是否是一個ViewResult if (actionResult is ViewResult) { ViewResult viewResult = actionResult as ViewResult; //下面的代碼就是執(zhí)行這個ViewResult,并把結(jié)果的html內(nèi)容放到一個StringBuiler對象中 var services = context.HttpContext.RequestServices; var executor = services.GetRequiredService<ViewResultExecutor>(); var option = services.GetRequiredService<IOptions<MvcViewOptions>>(); var result = executor.FindView(context, viewResult); result.EnsureSuccessful(originalLocations: null); var view = result.View; StringBuilder builder = new StringBuilder(); using (var writer = new StringWriter(builder)) { var viewContext = new ViewContext( context, view, viewResult.ViewData, viewResult.TempData, writer, option.Value.HtmlHelperOptions); view.RenderAsync(viewContext).GetAwaiter().GetResult(); //這句一定要調(diào)用,否則內(nèi)容就會是空的 writer.Flush(); } //按照規(guī)則生成靜態(tài)文件名稱 string area = context.RouteData.Values["area"].ToString().ToLower(); string controllerName = context.RouteData.Values["controller"].ToString().ToLower(); string actionName = context.RouteData.Values["action"].ToString().ToLower(); string id = context.RouteData.Values.ContainsKey(Key) ? context.RouteData.Values[Key].ToString() : ""; if (string.IsNullOrEmpty(id) && context.HttpContext.Request.Query.ContainsKey(Key)) { id = context.HttpContext.Request.Query[Key]; } string devicedir = Path.Combine(AppContext.BaseDirectory, "wwwroot", area); if (!Directory.Exists(devicedir)) { Directory.CreateDirectory(devicedir); } //寫入文件 string filePath = Path.Combine(AppContext.BaseDirectory, "wwwroot", area, controllerName + "-" + actionName + (string.IsNullOrEmpty(id) ? "" : ("-" + id)) + ".html"); using (FileStream fs = File.Open(filePath, FileMode.Create)) { using (StreamWriter sw = new StreamWriter(fs, Encoding.UTF8)) { sw.Write(builder.ToString()); } } //輸出當(dāng)前的結(jié)果 ContentResult contentresult = new ContentResult(); contentresult.Content = builder.ToString(); contentresult.ContentType = "text/html"; context.Result = contentresult; } |
上面提到的Key,我們直接增加對應(yīng)的屬性
1 2 3 4 | public string Key { get;set; } |
這樣我們就可以使用這個過濾器了,使用的方法:在控制器或者控制器方法上增加 [StaticFileHandlerFilter]特性,如果想配置不同的Key,可以使用 [StaticFileHandlerFilter(Key="設(shè)置的值")]
靜態(tài)化已經(jīng)實現(xiàn)了,我們還需要考慮更新的事,如果后臺把一篇文章更新了,我們得把靜態(tài)頁也更新下,方案有很多:一種是在后臺進行內(nèi)容更新時,同步把對應(yīng)的靜態(tài)頁刪除即可。我們這里介紹另外一種,定時更新,就是讓靜態(tài)頁有一定的有效期,過了這個有效期自動更新。要實現(xiàn)這個邏輯,我們需要在OnActionExecuting方法中獲取靜態(tài)頁的創(chuàng)建時間,然后跟當(dāng)前時間對比,判斷是否已過期,如果未過期直接輸出內(nèi)容,如果已過期,繼續(xù)執(zhí)行后面的邏輯。具體代碼如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | //獲取文件信息對象 FileInfo fileInfo=new FileInfo(filePath); //結(jié)算時間間隔,如果小于等于兩分鐘,就直接輸出,當(dāng)然這里的規(guī)則可以改 TimeSpan ts = DateTime.Now - fileInfo.CreationTime; if(ts.TotalMinutes<=2) { using (FileStream fs = File.Open(filePath, FileMode.Open)) { using (StreamReader sr = new StreamReader(fs, Encoding.UTF8)) { ContentResult contentresult = new ContentResult(); contentresult.Content = sr.ReadToEnd(); contentresult.ContentType = "text/html"; context.Result = contentresult; } } } |
關(guān)于asp.net core mvc中怎么實現(xiàn)偽靜態(tài)功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
分享題目:asp.netcoremvc中怎么實現(xiàn)偽靜態(tài)功能-創(chuàng)新互聯(lián)
網(wǎng)站網(wǎng)址:http://www.rwnh.cn/article18/copedp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、網(wǎng)站制作、網(wǎng)頁設(shè)計公司、網(wǎng)站營銷、自適應(yīng)網(wǎng)站、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容