Как добавить объекты из DI-контейнера в Aurelia-диалог
Используя Aurelia, вы можете положить вещи в контейнер, а затем ввести его. Состояние контейнера не передается в диалоге.
Есть ли способ получить данные, которые я вставил в контейнер, и использовать их в диалоге?
Пример кода
home.js
fetchString(){
this.data = JSON.parse(stringform);
this.container.registerInstance('tpscform', this.data);
}
таможенно-element.js
import {DialogService} from 'aurelia-dialog';
import {LookupFieldsDialog} from './dialog/lookup-fields-dialog';
@inject('tpscform', DialogService)
export class LookupFieldsQuestion {
constructor(form, dialog){
console.log(form); // returns the object from the container - works
//...
}
submit() {
this.dialogService.open({
viewModel: LookupFieldsDialog,
model: this.question,
lock: false
});
}
}
Lookup-поля-dialog.js
import {inject} from 'aurelia-framework';
import {DialogController} from 'aurelia-dialog';
@inject(DialogController, 'tpscform')
export class LookupFieldsDialog {
constructor(controller, form) {
this.controller = controller;
console.log(form); // Returns the string 'tpscform' - doesn't work
}
activate(question) {
this.question = question;
}
}
1 ответ
Решение
Как уже упоминалось @FabioLuz, вы можете передать контейнер в диалог:
import {Container} from 'aurelia-framework';
import {DialogService} from 'aurelia-dialog';
import {LookupFieldsDialog} from './dialog/lookup-fields-dialog';
@inject(DialogService, Container)
export class LookupFieldsQuestion {
constructor(dialogService, container) {
this.container = container;
this.dialogService = dialogService;
}
submit() {
this.dialogService.open({
viewModel: LookupFieldsDialog,
model: this.question,
// Share current container here
childContainer: this.container.createChild(),
lock: false
});
}