Razor模板引擎简单介绍
程序员文章站
2022-05-26 09:42:18
一.工具下载:
程序集下载地址:链接: http://pan.baidu.com/s/1hsgjv5y 密码: pfja
适用于visual studio2015程序集...
一.工具下载:
程序集下载地址:链接: http://pan.baidu.com/s/1hsgjv5y 密码: pfja
适用于visual studio2015程序集下载地址:链接: http://pan.baidu.com/s/1nvn31il 密码: 4v7h
如果在使用vs2015等更高版本的时候出现“file not found exception cannot load system.web.razor.dll version=2.0.0”这样的错误,请换用下面附件中的程序集把旧的razoreginee.dll删掉,然后把 razorengine.net4.0.dll和system.web.razor.net4.0.dll添加到项目引用中。
二.核心代码代码封装:
public static string parserazor(httpcontext context, string cshtmlvirtualpath, object model = null) { string fullpath = context.server.mappath(cshtmlvirtualpath);//将虚拟路径转换为绝对路径 string cshtml = file.readalltext(fullpath); //将整个cshtml代码读取出来 string cachename = fullpath + file.getlastwritetime(fullpath);//返回上次写入指定文件或目录的日期和时间。 string html = razor.parse(cshtml, model, cachename); return html; } /// <summary> /// 直接将读取的cshtml代码转换完后,直接返回给客户端 /// </summary> /// <param name="context"></param> /// <param name="cshtmlvirtualpath"></param> /// <param name="model"></param> public static void outputrazor(httpcontext context, string cshtmlvirtualpath, object model = null) { string html = parserazor(context, cshtmlvirtualpath, model); context.response.write(html); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: ASP.Net MVC 布局页、模板页使用方法详细介绍
下一篇: go语言接口用法实例分析