12

我正在尝试将数据发送到自定义模式内容组件,以便我可以从任何其他组件调用它而不是重复代码。我是 Angular 2 的新手,并且遵循了 ng-boostrap 的“组件作为内容”演示以及 Angular 文档中的“组件交互”,但还没有找到一种方法来让它工作或这个案例的示例.

我可以打开模式,但不能打开动态内容。我已经尝试了@Input和变量方法但没有成功。我也加了ModalService还在app.module.ts. 这就是我对两种不起作用的方法所拥有的:

page.component.html:

<a (click)="modal('message')">
<template ngbModalContainer><my-modal [data]="data"></my-modal></template>

page.component.ts:

import { Component } from '@angular/core'
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
import { ModalService } from '../helpers/modal.service'
import { ModalComponent } from '../helpers/modal.component'

@Component({
  selector: 'app-page',
  templateUrl: './page.component.html',
  styleUrls: ['./page.component.scss'],
  entryComponents: [ ModalComponent ]
})

export class PageComponent {
  data = 'customData'
  constructor (
    private ngbModalService: NgbModal,
    private modalService: ModalService
   ) { }

  closeResult: string
  modal(content) {
    this.data = 'changedData'
    this.modalService.newModal(content)
    this.ngbModalService.open(ModalComponent).result.then((result) => {
      this.closeResult = `Closed with: ${result}`
    }, (reason) => {
      this.closeResult = `Dismissed ${reason}`
    });
  }
}

modal.service.ts:

import { Injectable } from '@angular/core';
import { Subject }    from 'rxjs/Subject';

@Injectable()
export class ModalService {
  private modalSource = new Subject<string>()
  modal$ = this.modalSource.asObservable()
  newModal(content: string) {
    this.modalSource.next(content)
  }
}

modal.component.ts:

import { Component, Input, OnDestroy } from '@angular/core';
import { Subscription }   from 'rxjs/Subscription';
import { ModalService } from './modal.service'

@Component({
  selector: 'my-modal',
  template: `
    <div class="modal-body">
    {{data}}
    {{content}}
    </div>
  `
})

export class ModalComponent implements OnDestroy {
  @Input() data: string
  content = 'hello'

  subscription: Subscription
  constructor(
    private modalService: ModalService
  ) {
    this.subscription = modalService.modal$.subscribe(
      content => {
        this.content = content
    });
  }

  ngOnDestroy() {
    this.subscription.unsubscribe();
  }
}

使用 angular v2.1.0、angular-cli v1.0.0-beta.16、ng-bootstrap v1.0.0-alpha.8

4

3 回答 3

13

我解决了!这是如何做到的:

  • 在组件中(从您打开模式的位置)执行以下操作:

    const modalRef = this.modalService.open(ModalComponent);
    
    modalRef.componentInstance.passedData= this.dataToPass;
    
    modalRef.result.then(result => {
      //do something with result
    }                                                       
    
  • 在模态组件中(接收端):

    export class ModalComponent { 
    
     passedData: typeOfData;     // declare it!
    
     someFunction() {     // or some  lifecycle hook 
      console.log(this.passedData)  // and then, use it!
     }
    
    // rest of the ModalComponent 
    }
    
于 2018-05-27T09:47:18.293 回答
3

只需提供一个服务并将其注入VideoModalComponentPageComponent然后您就可以使用该服务进行通信。

有关更多详细信息和示例,请参阅https://angular.io/docs/ts/latest/cookbook/component-communication.html#!#bidirectional-service

于 2016-10-14T16:41:11.840 回答
0

这里有一些方法可以做到这一点。

  1. 公开一个实例component
  2. 在一个实例上使用解析并公开解析的值NgbActiveModal
  3. 使用解析并将解析的值绑定到组件的输入。

见:https ://github.com/ng-bootstrap/ng-bootstrap/issues/861#issuecomment-253500089

于 2017-04-14T18:35:35.863 回答