7
<select id="Test" TestAttr="{{:LocationId}}">              
       {{for #parent.parent.data.Location}}                         
                  <option value="{{:LocationId}}" {{if LocationId= *#parent.parent.data.LocationId*}}selected{{/if}}>{{:#parent.parent.data.LocationId}}</option>                            
       {{/for}}
</select>

如何在**之间提到的if语句中获取父数组的LocationId。

4

1 回答 1

13

您可以引入将在循环内可见的变量(在官方文档中:设置上下文模板参数,可在所有嵌套上下文中访问为 ~nameOfParameter

<select id="Test" TestAttr="{{:LocationId}}">  
    {{for #parent.parent.data.Location ~locationId=LocationId}}
       <option value="{{:~locationId}}"...


编辑后记:

上面的链接指向以前的文档,现在已被取代。

有关当前文档,请参阅访问父数据

另请参阅此stackoverflow 问题

于 2013-01-04T08:17:37.450 回答