我按照聚合物'快速浏览并且有一节向我们解释了如何基于数组重复元素,但它只向我们展示了如何使用模板转发器来完成它,而且我真的不知道它是如何从后面工作的。我试着做自己的转发器,但Polymer将我的代码注入字符串,就像unescape字符一样。
代码:
<dom-module id="employee-list">
<template>
[[employe()]]
</template>
<script>
class EmployeeList extends Polymer.Element {
static get is () {
return 'employee-list'
}
constructor () {
super()
this.employees = [
{first: 'Bob', last: 'Li'},
{first: 'Ayesha', last: 'Johnson'},
{first: 'Fatma', last: 'Kumari'},
{first: 'Tony', last: 'Morelli'}
]
}
employe(employees = this.employees) {
let template = '<div>Employee List</div>'
template += employees.map((currentEmployee, id) => {
return `<div>Employee ${id}, FullName : ${currentEmployee.first + ' ' + currentEmployee.last}</div>`
})
return template
}
}
customElements.define(EmployeeList.is,EmployeeList)
</script>
</dom-module>
结果:
<div>Employee List</div><div>Employee 0, FullName : Bob Li</div>,<div>Employee 1, FullName : Ayesha Johnson</div>,<div>Employee 2, FullName : Fatma Kumari</div>,<div>Employee 3, FullName : Tony Morelli</div>
我想知道它是否是在Polymer @ 2中注入unescape字符/ html的一种形式
答案 0 :(得分:0)
您可以在功能中使用querySelector
来实现这一目标
HTML
<template>
<div id="employee-list"></div>
</template>
JS
this.querySelector("#employee-list").innerHTML = template
如乔丹所述,你应该使用dom-repeat
<div> Employee list: </div>
<template is="dom-repeat" items="{{employees}}">
<div>First name: <span>{{item.first}}</span></div>
<div>Last name: <span>{{item.last}}</span></div>
</template>
如果您按照获取ID的方式进行操作,则可以使用dom-repeat
替代。您可以使用属性index-as
来执行此操作。
<template is="dom-repeat" items="{{employees}}" index-as="id">
您可以在此处找到有关dom-repeat
的更多信息:https://www.polymer-project.org/1.0/docs/api/dom-repeat