Aurelia 与 globalResources 组合
Aurelia compose with globalResources
我们的计划如下:带有 Web 部件的仪表板。我们计划开发许多不同的 "webparts"(作为自定义元素),稍后,根据角色或偏好,我们将仅展示一部分可用的 Web 部件。
假设我在仪表板中有以下自定义元素。
<template>
<my-webpart1 state.bind="state"></my-webpart1>
<my-webpart2 state.bind="state"></my-webpart2>
<my-webpart3 state.bind="state"></my-webpart3>
<my-webpart4 state.bind="state"></my-webpart4>
<my-webpart5 state.bind="state"></my-webpart5>
</template>
是否可以遍历名称?
<div repeat.for="webpartname of manager.webparts">
<compose view-model="${webpartname}" ></compose>
</div>
第一个问题是 webparts 是用不同的功能开发的,并且是使用 .globalResources()
注册的 - 我怎样才能得到 url?
那么第二个问题就是如何绑定。我还没有开始。
关于如何解决这个问题有什么想法吗?
此致
拉尔西
在每个部分上使用 if.bind
或 show.bind
属性,而不是使用 compose
。
我们的计划如下:带有 Web 部件的仪表板。我们计划开发许多不同的 "webparts"(作为自定义元素),稍后,根据角色或偏好,我们将仅展示一部分可用的 Web 部件。
假设我在仪表板中有以下自定义元素。
<template>
<my-webpart1 state.bind="state"></my-webpart1>
<my-webpart2 state.bind="state"></my-webpart2>
<my-webpart3 state.bind="state"></my-webpart3>
<my-webpart4 state.bind="state"></my-webpart4>
<my-webpart5 state.bind="state"></my-webpart5>
</template>
是否可以遍历名称?
<div repeat.for="webpartname of manager.webparts">
<compose view-model="${webpartname}" ></compose>
</div>
第一个问题是 webparts 是用不同的功能开发的,并且是使用 .globalResources()
注册的 - 我怎样才能得到 url?
那么第二个问题就是如何绑定。我还没有开始。
关于如何解决这个问题有什么想法吗?
此致
拉尔西
在每个部分上使用 if.bind
或 show.bind
属性,而不是使用 compose
。