当前位置: 首页 > news >正文

网站开发语言 微信接口对学院网站建设的建议

网站开发语言 微信接口,对学院网站建设的建议,评测网站做的那些条形图,怎样用西瓜影音做网站DotLiquid是一个在.Net Framework上运行的模板引擎#xff0c;采用Ruby的Liquid语法#xff0c;这个语法广泛的用在Ruby on rails和Django等网页框架中。DotLiquid相比于Mvc默认模板引擎Razor的好处有#xff1a; 因为不需要编译到程序集再载入首次渲染速度很快不会导致内存… DotLiquid是一个在.Net Framework上运行的模板引擎采用Ruby的Liquid语法这个语法广泛的用在Ruby on rails和Django等网页框架中。DotLiquid相比于Mvc默认模板引擎Razor的好处有 因为不需要编译到程序集再载入首次渲染速度很快不会导致内存泄漏 可以在任何地方使用不需要先准备WebViewPageViewContext等复杂的上下文对象 DotLiquid的官网是http://dotliquidmarkup.org/开源协议是非常宽松的MS-PL。 示例代码 我创建一个使用了DotLiquid的示例Mvc项目完整代码可以查看这里。以下的示例将以Mvc中的Action为单位都存放在HomeController下。 最基础的使用 Template.Parse可以把字符串解析为模板对象再使用Render把模板对象渲染为字符串。打开页面可以看见Hello, World!。 public ActionResult HelloWorld(){    var template Template.Parse(Hello, {{ name }}!);     var result template.Render(Hash.FromAnonymousObject(new { name World }));     return Content(result); } 使用过滤器 在|后面的就是过滤器过滤器可以连锁起来使用。escape过滤器用于做html编码避免name中的当成是html标签描画。upcase过滤器把字符串中的字母全部转换为大写。打开页面可以看见Hello, WORLD!。 public ActionResult HelloFilter(){    var template Template.Parse(Hello, {{ name | escape | upcase }}!);    var result template.Render(Hash.FromAnonymousObject(new { name World }));    return Content(result); } 定义过滤器 DotLiquid支持自定义过滤器首先需要一个过滤器类型其中的函数名称就是过滤器名称。过滤器支持多个参数和默认参数。 public class DotliquidCustomFilter{    public static string Substr(string value, int startIndex, int length -1)    {        if (length 0)            return value.Substring(startIndex, length);        return value.Substring(startIndex);} } 在网站启动的时候把这个过滤器注册到DotLiquid public class MvcApplication : System.Web.HttpApplication{    protected void Application_Start()    {        // 在原有的代码下添加Template.RegisterFilter(typeof(DotliquidCustomFilter));} } 这个例子会显示Hello, orl! public ActionResult CustomFilter(){    var template Template.Parse(Hello, {{ name | substr: 1, 3 }}!);    var result template.Render(Hash.FromAnonymousObject(new { name World }));    return Content(result); } 使用标签 DotLiquid中有两种标签一种是普通标签(Block)一种是自闭合标签(Tag)。这里的assign是自闭合标签if是普通标签普通标签需要用end标签名闭合。显示内容是Hello, World! public ActionResult HelloTag(){    var template Template.Parse(        {% assign name World %}        {% if visible %}        Hello, {{ name }}!        {% endif %}    );    var result template.Render(Hash.FromAnonymousObject(new { visible true }));    return Content(result); } 自定义标签 这里我将定义一个自闭合标签conditional这个标签有三个参数如果第一个参数成立则描画第二个否则描画第三个参数。 public class ConditionalTag : Tag{    public string ConditionExpression { get; set; }      public string TrueExpression { get; set; }    public string FalseExpression { get; set; }     public override void Initialize(string tagName, string markup, Liststring tokens)    {         base.Initialize(tagName, markup, tokens);         var expressions markup.Trim().Split( );ConditionExpression expressions[0];TrueExpression expressions[1];FalseExpression expressions.Length 3 ? expressions[2] : ;}        public override void Render(Context context, TextWriter result)    {           var condition context[ConditionExpression];            if (!(condition null || condition.Equals(false) || condition.Equals()))result.Write(context[TrueExpression]);        else            result.Write(context[FalseExpression]);} } 在网站启动时把这个标签注册到DotLiquid public class MvcApplication : System.Web.HttpApplication{    protected void Application_Start()    {        // 在原有的代码下添加Template.RegisterTagConditionalTag(conditional);} } 这个例子会显示Bar public ActionResult CustomTag(){    var template Template.Parse({% conditional cond foo bar %});       var result template.Render(Hash.FromAnonymousObject(new { cond false, foo Foo, bar Bar }));    return Content(result); } 模板文件 DotLiquid也支持从文件读取模板需要先定义一个TemplateFileSystem。 public class DotliquidTemplateFileSystem : IFileSystem{    public string ReadTemplateFile(Context context, string templateName)    {        var path context[templateName] as string;        if (string.IsNullOrEmpty(path))            return path;        var fullPath HttpContext.Current.Server.MapPath(path);        return File.ReadAllText(fullPath);} } 设置DotLiquid使用自定义的文件系统 public class MvcApplication : System.Web.HttpApplication{    protected void Application_Start()    {        // 在原有的代码下添加Template.FileSystem new DotliquidTemplateFileSystem();} } 再定义一个控制器基类 public abstract class DotliquidController : Controller{    public ContentResult DotliquidView(string path null, object parameters null)    {        // 路径为空时根据当前的Action决定if (string.IsNullOrEmpty(path)){            var controller RouteData.Values[controller];             var action RouteData.Values[action];path $~/DotliquidViews/{controller}/{action}.html;}        // 根据路径读取模板内容var templateStr Template.FileSystem.ReadTemplateFile(new Context(), path );        // 解析模板这里可以缓存Parse出来的对象但是为了简单这里就略去了var template Template.Parse(templateStr);        // 描画模板Hash templateParameters;           if (parameters is IDictionarystring, object)templateParameters Hash.FromDictionary((IDictionarystring, object)parameters);               elsetemplateParameters Hash.FromAnonymousObject(parameters ?? new { });                var result template.Render(templateParameters);        // 返回描画出来的内容return Content(result, text/html);} } 现在可以在控制器中使用基于DotLiquid的模板了 public ActionResult HelloTemplateFile(){    return DotliquidView(); } 上面会返回文件~/DotliquidViews/Home/HelloTemplateFile.html的内容 Hello, Template! 嵌入子模板 为了实现代码的重用DotLiquid的模板还可以嵌入其他子模板嵌入需要使用include标签。以下例子会显示Hello, Include! public ActionResult HelloInclude(){    return DotliquidView(); } 文件~/DotliquidViews/Home/HelloInclude.html的内容 Hello, {% include ~/DotliquidViews/Home/HelloIncludeContents.html %}! 文件~/DotliquidViews/Home/HelloIncludeContents.html的内容 Include 继承父模板 除了嵌入子模版还能实现布局(Layout)方式的继承父模板继承需要使用extends和block标签。以下例子会返回Htmldiv classlayouth1Here is title/h1pHere is body/p/div public ActionResult HelloExtends(){    return DotliquidView(); } 文件~/DotliquidViews/Home/HelloExtendsLayout.html的内容 div classlayouth1{% block title %}Default title{% endblock %}    /h1p{% block body %}Default body{% endblock %}    /p/div 文件~/DotliquidViews/Home/HelloExtends.html的内容 {% extends ~/DotliquidViews/Home/HelloExtendLayout.html %}{% block title %} Here is title {% endblock %}{% block body %} Here is body {% endblock %} 描画自定义对象 请先看以下的例子 public class ExampleViewModel{    public string Name { get; set; }     public int Age { get; set; } } public ActionResult CustomObject(){    var template Template.Parse(Name: {{ model.Name }}, Age: {{ model.Age }});       var model new ExampleViewModel() { Name john, Age 35 };         var result template.Render(Hash.FromAnonymousObject(new { model }));          return Content(result); } 你可能预料这个例子会显示Name: john, Age: 35但实际运行时会给出以下错误 Name: Liquid syntax error: Object Dotliquid.Example.Dotliquid.ExampleViewModel is invalid because it is neither a built-in type nor implements ILiquidizable, Age: Liquid syntax error: Object Dotliquid.Example.Dotliquid.ExampleViewModel is invalid because it is neither a built-in type nor implements ILiquidizable 这是因为DotLiquid为了安全性默认不允许描画未经注册的对象这样即使模板由前端使用者提供也不会导致信息泄露。为了解决上面的错误需要把ExampleViewModel注册为可描画的对象。除了使用RegisterSafeType注册你也可以让ExampleViewModel继承ILiquidizable在部分场景下会更适合。 public class MvcApplication : System.Web.HttpApplication{    protected void Application_Start()    {        // 在原有的代码下添加Template.RegisterSafeType(typeof(ExampleViewModel), Hash.FromAnonymousObject);} } 写在最后 DotLiquid是一个灵活性很高并且依赖很少的模板引擎虽然没有Razor流行但大量的单元测试保证它可以经得起实际的使用。目前使用了DotLiquid的项目有 Pretzel静态网站生成工具Nancy网页框架ZKWeb网页框架 目前DotLiquid准备升级2.0版本作者正在召集PR如果你有意向可以到DotLiquid的github看看。 原文地址http://www.cnblogs.com/zkweb/p/5864794.html .NET社区新闻深度好文微信中搜索dotNET跨平台或扫描二维码关注
http://wiki.neutronadmin.com/news/112074/

相关文章:

  • 网站首页开发收费wordpress获取视频缩略图
  • 网络推广需要什么技能什么是优化产业结构
  • 芜湖网站建设 文库即刻搜索
  • 网站开发就业岗位长春网站营销
  • 山东集团网站建设手机建站模版
  • 网站开发建立广州做护肤品的网站
  • 江西建设网官方网站手机网站大全12345
  • 正规的邯郸网站建设做一家算命的网站
  • 公司网站建设 毕业设计可以注册邮箱的网站
  • 个人网站怎么维护工业信息化网站备案系统
  • 学php网站开发crm是什么系统软件
  • 在线免费源码资源源码站网站域名到期不续费会怎么样
  • 顾客评价网站如何再网站上做免费广告词
  • 做动画合成的视频网站广告公司简介范文
  • 营销型网站建站系统建设路街道办事处门户网站
  • 中式建筑网站没网站域名可以做备案吗
  • 手机网站建设万网wordpress实现微信支付
  • 宁波建设业协会网站品牌注册号
  • 建设网站的机构wordpress首页视频
  • 推广网站注册赚佣金百度翻译api wordpress
  • 在墙外的优质网站重庆能创科技有限公司
  • 做衣服 网站wordpress 摘要不显示
  • 学做衣服网站知乎网站网页设计屏幕尺寸
  • php音乐网站设计高大上强企业网站
  • 安徽网站建设网络公司网页设计代码大全图片
  • 网站备案背景布wordpress 正在发送请求
  • 网站域名查询ip杭州网络公司建网站
  • 网站建设分为几个时期设计类招聘网站
  • 贵阳有哪些可以制作网站的公司东莞网站建设推广
  • 提供秦皇岛网站建设价格商业设计师是做什么的