在我们的项目中,我们有一堆这样的自定义元素:
<entity-link id="entity.id>
基本上它只是呈现一个链接来编辑实体屏幕
<template>
<a class="entity-link"
route-href="route: ENTITY_EDIT; params.bind: { id: entity.id }"
>${entity.name}
</a>
</template>
问题是这在 Aurelia Dialog 上下文中根本不起作用。
href
根本没有填充属性。
我试图调查这个问题,我将路由器直接注入到对话框的视图模型中
import {Router} from 'aurelia-router';
@inject(DialogController, Router)
export default class RecordDetailsDialog {
constructor(dialogController:DialogController, router:Router) {
this.controller = dialogController;
this.router = router; /// WRONG INSTANCE!!!
}
}
并发现注入了错误的路由器实例。主路由 (AppRouter) 没有定义 ENTITY_EDIT 路由,它是在子路由 configureRoute 函数中动态添加的。
我不明白为什么注入的路由器是主要的路由器,而不是传递给启动对话框打开的视图的路由器。
请有任何建议