我试图仅向某些用户显示 dom-if 模板,但我不知道该怎么做。这是我正在尝试做的伪代码:
<template is="dom-if" if="{{user.isAdmin}}" restamp="true">
<hr />
<h1>Add new conference:</h1>
<paper-input
id="title"
label="Título"
type="text"
name="title">
</paper-input>
<paper-fab id="saveFab" icon="cloud-upload" on-tap="add"></paper-fab>
</template>
<script>
Polymer({
is: 'my-conferences',
properties: {
data: Array,
user: Object,
},
...
其中“用户”是我从<firebase-auth>
元素中获得的对象。user.isAdmin 之类的东西是我想要实现的。
有任何想法吗?谢谢!