我正在尝试实现自己的标签,每个标签都有自己的内容。默认选择的选项卡是选项卡1.它加载html内容和模板就好了。当我尝试切换到其他两个选项卡时,我收到以下错误消息:
错误:预期的模板或null,找到:false
在这种情况下,选项卡1中呈现的模板在选项卡3中呈现的相同。在选项卡1中工作正常,在选项卡3中我收到错误消息。
{{#if isSeletedTab 1}}
<div class="col-sm-12 horizontal-list">
<div class="new-store-card">
<img src='./img/add.png' />
<br/>
<span class="new-store-text">Add a new</span>
<br/>
<span class="new-store-text">store</span>
</div>
{{#each store in stores}}
<div class="store-card-container">
{{#if isSelectedStore store.name}}
<div class="edit-store-button">
<img src="./img/edit.png" class="edit-store-button-icon"/>
</div>
{{/if}}
<div class="store-card" id={{store.name}} style="{{#unless isSelectedStore store.name}}opacity: 0.3;{{/unless}}">
<h5 class="store-card-name" id={{store.name}}>{{store.name}}</h5>
<span class="store-card-id" id={{store.name}}>{{store.externalId}}</span>
</div>
</div>
{{/each}}
</div>
{{> users}}
{{else isSeletedTab 2}}
{{> roles}}
{{else isSeletedTab 3}}
{{> users}}
{{/if}}
答案 0 :(得分:1)
您正在以错误的方式使用{{if}}
和{{else}}
。您无法在else
内使用条件,Blaze中也没有else if
。
您的代码应该是这样的:
{{#if isSeletedTab 1}}
{{> users}}
{{else}}
{{#if isSeletedTab 2}}
{{> roles}}
{{else}}
{{#if isSeletedTab 3}}
{{> users}}
{{/if}}
{{/if}}
{{/if}}