当前位置: 首页>>代码示例>>C#>>正文


C# Context.Stack方法代码示例

本文整理汇总了C#中DotLiquid.Context.Stack方法的典型用法代码示例。如果您正苦于以下问题:C# Context.Stack方法的具体用法?C# Context.Stack怎么用?C# Context.Stack使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DotLiquid.Context的用法示例。


在下文中一共展示了Context.Stack方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Render

		/// <summary>
		/// 描画内容
		/// </summary>
		/// <param name="context"></param>
		/// <param name="result"></param>
		public override void Render(Context context, TextWriter result) {
			// 获取所在区域,没有区域时抛例外
			if (context[Area.CurrentAreaIdKey] == null) {
				throw new FormatException("widget must use inside area");
			}
			// 获取模块名称和参数
			var markup = this.Markup.Trim();
			string widgetPath = null;
			string widgetArgs = null;
			var index = markup.IndexOf(' ');
			if (index > 0) {
				widgetPath = markup.Substring(0, index);
				widgetArgs = markup.Substring(index + 1);
			} else {
				widgetPath = markup;
			}
			// 添加div的开头
			result.Write($"<div class='diy_widget' path='{widgetPath}' args='{widgetArgs}' >");
			// 描画模块的内容
			var scope = widgetArgs == null ? new Hash() : Hash.FromDictionary(
				JsonConvert.DeserializeObject<IDictionary<string, object>>(widgetArgs));
			context.Stack(scope, () => {
				var includeTag = new Include();
				var htmlPath = widgetPath + DiyWidgetInfo.HtmlExtension;
				includeTag.Initialize("include", htmlPath, null);
				includeTag.Render(context, result);
			});
			// 添加div的末尾
			result.Write("</div>");
		}
开发者ID:daywrite,项目名称:ZKWeb,代码行数:35,代码来源:Widget.cs

示例2: Render

		/// <summary>
		/// 描画标签
		/// </summary>
		/// <param name="context"></param>
		/// <param name="result"></param>
		public override void Render(Context context, TextWriter result) {
			var areaId = this.Markup.Trim();
			// 区域不能嵌套
			if (context[CurrentAreaIdKey] != null) {
				throw new FormatException("area tag can't be nested");
			}
			// 添加div的开头
			result.Write($"<div class='diy_area' area_id='{areaId}' >");
			// 描画子元素
			var scope = Hash.FromDictionary(new Dictionary<string, object>() {
				{ CurrentAreaIdKey, areaId }
			});
			context.Stack(scope, () => RenderAll(NodeList, context, result));
			// 添加div的末尾
			result.Write("</div>");
		}
开发者ID:daywrite,项目名称:ZKWeb,代码行数:21,代码来源:Area.cs

示例3: Render

 public override void Render(Context context, TextWriter result)
 {
     context.Stack(() => { context.Registers["current_page"] = this._page; });
 }
开发者ID:rajendra1809,项目名称:VirtoCommerce,代码行数:4,代码来源:CurrentPage.cs


注:本文中的DotLiquid.Context.Stack方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。