在 Aurelia 中,可以在 repeat.for 绑定中使用插槽吗?
In Aurelia, can a slot be used in a repeat.for binding?
我想创建一个循环遍历数组并将其应用于数组中的每个项目的自定义元素。例如,自定义元素的视图模板将包含如下内容:
<div repeat.for="i of items">
<div with.bind="i">
<slot></slot>
</div>
</div>
当我删除 repeat.for 和 with.bind 属性时,插槽显示一次。有没有办法让它对列表中的每个项目重复?
不,您今天不能使用 repeat.for
或 bind
的插槽。为此,您必须使用可更换部件。例如:
<div repeat.for="i of items">
<div with.bind="i">
<template replaceable part="content"></template>
</div>
</div>
用法:
<my-component>
<template replace-part="content">Some Content - ${somePropertyOfI}</template>
</my-component>
我想创建一个循环遍历数组并将其应用于数组中的每个项目的自定义元素。例如,自定义元素的视图模板将包含如下内容:
<div repeat.for="i of items">
<div with.bind="i">
<slot></slot>
</div>
</div>
当我删除 repeat.for 和 with.bind 属性时,插槽显示一次。有没有办法让它对列表中的每个项目重复?
不,您今天不能使用 repeat.for
或 bind
的插槽。为此,您必须使用可更换部件。例如:
<div repeat.for="i of items">
<div with.bind="i">
<template replaceable part="content"></template>
</div>
</div>
用法:
<my-component>
<template replace-part="content">Some Content - ${somePropertyOfI}</template>
</my-component>