GRMustache如何在循环中呈现父变量?

时间:2013-08-28 22:21:28

标签: mustache

这个问题适用于在iOS应用程序中使用GRMustache。虽然文档链接到标准胡子文档。

我正在遍历胡须数据,在页面的根目录中有一个名为#noAnimation的变量。该变量在循环外部工作,但它在我的循环中不起作用。如何在循环中获取父变量。

我尝试了{{../noAnimation}}并且渲染引擎中断了。

{{#noAnimation}}Will Work{{/}}

{{# withPosition(data) }}
   <div class="title">{{ title }}</div>
   {{#noAnimation}}Will not work{{/}}
{{/ withPosition(data) }}

GRMustache版本

/**
 * The major component of GRMustache version
 * 
* @since v1.0
*/
#define GRMUSTACHE_MAJOR_VERSION 6

/**
 * The minor component of GRMustache version
 * 
 * @since v1.0
 */
#define GRMUSTACHE_MINOR_VERSION 7

/**
 * The patch-level component of GRMustache version
 * 
 * @since v1.0
 */
#define GRMUSTACHE_PATCH_VERSION 4

0 个答案:

没有答案