gpt4 book ai didi

polymer - Polymer 1.0 上的条件模板

转载 作者:行者123 更新时间:2023-12-04 17:08:46 24 4
gpt4 key购买 nike

我想我在应用新的条件模板时遇到了麻烦,尤其是条件本身。

我有这样的事情:

<template is="dom-repeat" items="{{menuitems}}" as="poscol">
<template is="dom-if" if="{{index != 4}}">
<div class="positioncolum horizontal layout center wrap flex">
<span>{{index}}</span>
<template is="dom-repeat" items="{{poscol}}" as="mitem" >
<main-menu-item mitem="{{mitem}}"
order="{{mitem.TotalOrder}}"
onclick="clickMainMenuMod(index)">
</main-menu-item>
</template>
</div>
</template>
</template>

现在,如果我评论 <template is="dom-if" if="{{index != 4}}">位它工作正常,索引显示它应该。
在第四个数组中存储了用户选择为不可见的模块,因此它们不应出现在主菜单上。

我猜 if 条件有问题,但我猜不出是什么。

谢谢!

最佳答案

尝试像这样修改您的条件模板:

<template is="dom-if" if="{{show(index)}}">

并将这个函数添加到 Polymer 脚本中:
show: function (index) {
return index != 4;
}

关于polymer - Polymer 1.0 上的条件模板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30750788/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com