您好,登錄后才能下訂單哦!
這篇文章主要介紹“asp.net mvc動(dòng)態(tài)編譯生成Controller的方法是什么”,在日常操作中,相信很多人在asp.net mvc動(dòng)態(tài)編譯生成Controller的方法是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”asp.net mvc動(dòng)態(tài)編譯生成Controller的方法是什么”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
做網(wǎng)站后臺(tái)管理系統(tǒng)的時(shí)候,有時(shí)我們需要根據(jù)用戶的錄入配置動(dòng)態(tài)生成一些頻道,這些頻道需要用到獨(dú)立的Controller,這時(shí)就需要用到運(yùn)行時(shí)動(dòng)態(tài)編譯了。代碼如下:
using System.Web.Mvc; using System.CodeDom.Compiler; using System.Text; using Microsoft.CSharp; namespace DynamicCompiler.Controllers { public class HomeController : Controller { // GET: Home public ContentResult Index() { return Content(@" 這個(gè)頁面是vs生成的<br> <a href='/home/creat'>點(diǎn)擊動(dòng)態(tài)編譯生成TestController</a><br> <a href='/Test/'>訪問TestController</a><br> <a href='/Test/WithView'>測試帶View的Action</a> "); } public ContentResult Creat() { string cspath = Server.MapPath("~/TestController.cs"); var compiler = CompilerFromCsPath("TestController", cspath); //編譯 #region 輸出編譯信息 StringBuilder sb = new StringBuilder(); sb.Append("cs文件路徑:" + cspath); sb.Append("編譯信息:" + "<br>"); foreach (string output in compiler.Output) { sb.Append(output + "<br>"); } sb.Append("錯(cuò)誤信息:" + "<br>"); foreach (CompilerError error in compiler.Errors) { sb.Append(error.ErrorText + "<br>"); } #endregion return Content(sb.ToString()); } /// <summary> /// 動(dòng)態(tài)編譯并執(zhí)行代碼 /// </summary> /// <param name="csPath">代碼</param> /// <param name="dllName">輸出dll的路徑</param> /// <returns>返回輸出內(nèi)容</returns> private CompilerResults CompilerFromCsPath(string dllName, params string[] csPath) { string binpath = Server.MapPath("~/bin/"); CSharpCodeProvider complier = new CSharpCodeProvider(); //設(shè)置編譯參數(shù) CompilerParameters paras = new CompilerParameters(); //引入第三方dll paras.ReferencedAssemblies.Add("System.dll"); paras.ReferencedAssemblies.Add("System.linq.dll"); paras.ReferencedAssemblies.Add("System.Web.dll"); paras.ReferencedAssemblies.Add(binpath + "System.Web.Mvc.dll"); //是否內(nèi)存中生成輸出 paras.GenerateInMemory = false; //是否生成可執(zhí)行文件 paras.GenerateExecutable = false; paras.OutputAssembly = binpath + dllName + ".dll"; //編譯代碼 CompilerResults result = complier.CompileAssemblyFromFile(paras, csPath); return result; } } }
流程如下:
mvc啟動(dòng)的時(shí)候,只有HomeController,訪問TestController會(huì)提示404錯(cuò)誤
然后點(diǎn)擊動(dòng)態(tài)編譯TestController,生成dll到bin目錄。。再點(diǎn)擊訪問TestController的時(shí)候,就是可以訪問的狀態(tài)了。
這過程中,mvc應(yīng)用程序會(huì)自動(dòng)重啟的。。因?yàn)槲覀兊呐渲脙H僅是后臺(tái)使用,我覺得沒必要再去動(dòng)態(tài)加載dll,讓他自動(dòng)重啟就行了。。不知道這么想對不對。。請大手子賜教。。
代碼下載:dynamic-Controller_jb51.rar
到此,關(guān)于“asp.net mvc動(dòng)態(tài)編譯生成Controller的方法是什么”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。