を角度によって注入インスタンスになりますタイプng.ui.bootstrap.IModalService
です。
「コントローラとして」構文を使用しているため、ここで$scope
を使用する必要はありません。代わりにangular-ui modal exampleに示すようにresolveを使用できます。
class ItemsListController {
static controllerId = 'ItemsListController';
static $inject = ['$modal'];
data = [
{ value1: 'Item1Value1', value2: 'Item1Value2' },
{ value1: 'Item2Value1', value2: 'Item2Value2' }
];
constructor(private $modal: ng.ui.bootstrap.IModalService) { }
edit(item) {
var options: ng.ui.bootstrap.IModalSettings = {
templateUrl: 'modal.html',
controller: ItemDetailController.controllerId + ' as modal',
resolve: {
item:() => item // <- this will pass the same instance
// of the item displayed in the table to the modal
}
};
this.$modal.open(options).result
.then(updatedItem => this.save(updatedItem));
//.then(_ => this.save(item)); // <- this works the same way as the line above
}
save(item) {
console.log('saving', item);
}
}
class ItemDetailController {
static controllerId = 'ItemDetailController';
static $inject = ['$modalInstance', 'item'];
constructor(private $modalInstance: ng.ui.bootstrap.IModalServiceInstance, public item) { }
save() {
this.$modalInstance.close(this.item); // passing this item back
// is not necessary since it
// is the same instance of the
// item sent to the modal
}
cancel() {
this.$modalInstance.dismiss('cancel');
}
}
ので、コントローラは、実際に/モーダルを呼び出して設定しない:ここで
は、サンプルコードがありますか?これはSOCを壊していませんか? – xvdiff
No.'error ="悪いことがコントローラーから起こったのと同じことです。コントローラはUIを駆動し、 '$ element'を使用しません – basarat
はい、私は$ elementを見たのは本当に混乱しました。私は、HTML側でモーダルを設定する方法があると思っただけです。 (DTインタフェースを除いて) – xvdiff