这个问题是针对在 iOS 应用程序中使用 GRMustache 的。尽管文档链接到标准的 mustache 文档。
我正在遍历小胡子数据,在页面的根目录中有一个名为#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