首页 > 编程 > .NET > 正文

asp.net模板引擎Razor调用外部方法用法实例

2024-07-10 13:29:09
字体:
来源:转载
供稿:网友

这篇文章主要介绍了asp.net模板引擎Razor调用外部方法用法,实例分析了Razor调用外部方法的相关使用技巧,需要的朋友可以参考下

本文实例讲述了asp.net模板引擎Razor调用外部方法用法。分享给大家供大家参考。具体如下:

首先使用Razor的步骤:读取cshtml、解析cshtml同时指定cacheName。

而这个步骤是重复的,为了遵循DRY原则,将这段代码封装为一个RazorHelper()方法

 

 
  1. public class RazorHelper 
  2. public static string ParseRazor(HttpContext context, string csHtmlVirtualPath, object model) 
  3. string fullPath = context.Server.MapPath(csHtmlVirtualPath); 
  4. string cshtml = File.ReadAllText(fullPath); 
  5. string cacheName = fullPath + File.GetLastWriteTime(fullPath); 
  6. string html = Razor.Parse(cshtml,model,cacheName); 
  7. return html; 

如何在cshtml中用Razor调用外部方法

1. 首先在cshtml文件引用test1和test2所在类的命名空间

 

 
  1. @using WebTest1.RazorDemo;<!--test1和test2所在类的命名空间--> 
  2. <!DOCTYPE html> 
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
  6. <title></title> 
  7. </head> 
  8. <body> 
  9. @RazorTest.test1()<br /> 
  10. @RazorTest.test2() 
  11. </body> 
  12. </html> 

2. 在一般处理程序中调用RazorHelper.ParseRazor(),将读取到的cshtml文件返回给客户

 

 
  1. public void ProcessRequest(HttpContext context) 
  2. context.Response.ContentType = "text/html"
  3. string html = RazorHelper.ParseRazor(context, @"~/Razordemo/Razor2.cshtml"null); 
  4. context.Response.Write(html);  

为什么要在cshtml文件中调用方法呢?

先看一个繁琐的,在cshtml中插入checkbox的处理

1. 一般处理程序

 

  1. bool gender = true
  2. string html = RazorHelper.ParseRazor(context, @"~/Razordemo/Razor2.cshtml"new { Gender = gender }); 

2. cshtml文件中处理checkbox的checked状态

 

  1. <input type="checkbox" @(Model.Gender?"checked":"") /> 
  2. <!--加括号改变优先级,否则编译器会将点Model后面的表达式当字符串处理--> 

是不是很乱?处女座不能忍。

我们知道方法可以封装一些重复代码,调用方法让cshtml页面更简洁。

举个例子:

要在cshtml页面插入一个checkbox。

1. 首先封装一个CheckBox()方法

 

 
  1. public static RawString CheckBox(string name, string id, bool isChecked) 
  2. StringBuilder sb = new StringBuilder(); 
  3. sb.Append("<input type='checkbox' id='").Append(id).Append("' ").Append("name='").Append(name).Append("' "); 
  4. if (isChecked) 
  5. sb.Append("checked"); 
  6. sb.Append("/>"); 
  7. return new RawString(sb.ToString()); 

2. 在一般处理程序中读取和解析cshtml文件

 

 
  1. string html = RazorHelper.ParseRazor(context, @"~/Razordemo/Razor2.cshtml"null); 
  2. context.Response.Write(html); 

3. 在cshtml文件中调用CheckBox()方法,将checkbox插入cshtml

 

 
  1. @using WebTest1.RazorDemo;<!--test1和test2所在类的命名空间--> 
  2. <!DOCTYPE html> 
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
  6. <title></title> 
  7. </head> 
  8. <body> 
  9. @RazorTest.CheckBox("apple","apple",true
  10. </body> 
  11. </html> 

希望本文所述对大家的asp.net程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表