ОШИБКА TypeError: Невозможно прочитать свойство 'createText' с нулевым значением в ngx-bootstrap с угловым значением 6 - PullRequest
0 голосов
/ 11 октября 2018

Я хочу открыть модал ngx-bootstrap из другого компонента, используя @ViewChild в angular 6, но я получаю эту ошибку.

ОШИБКА TypeError: Невозможно прочитать свойство 'createText' с нулевым значением в ComponentLoader.push ../ node_modules / ngx-bootstrap / component-loader / component-loader.class.js.ComponentLoader._getContentRef

И в элементе проверки этот тег также виден

<bs-modal-backdrop class="modal-backdrop fade in"></bs-modal-backdrop>  

Ответы [ 2 ]

0 голосов
/ 15 апреля 2019

Вы можете использовать селектор для вызова другого компонента в модальном виде и использовать

  • @Input() для отправки данных внутри вызываемого компонента
  • @Output() EventEmitter для возвратаТада из вызываемого компонента
  • OnChanges для привязки изменения в вызываемом компоненте

как в примере ниже

Вот первый компонент:

import { Component, TemplateRef } from '@angular/core';
import { BsModalService, BsModalRef } from 'ngx-bootstrap/modal';

@Component({
  selector: 'demo-modal-service-static',
  templateUrl: './service-template.html'
})
export class DemoModalServiceStaticComponent {
  modalRef: BsModalRef;
  constructor(private modalService: BsModalService) {}

  openModal(template: TemplateRef<any>) {
    this.modalRef = this.modalService.show(template);
  }

  // Use change happen after modal
  public callAfterAdd(modifiedProduct){
  // close this.modalRef
  }
}

Вот другой компонент для вызова внутри Modal:

import { Component, TemplateRef , OnInit, OnChanges, Input, Output, EventEmitter, SimpleChanges} from '@angular/core';
import { BsModalService, BsModalRef } from 'ngx-bootstrap/modal';

@Component({
  selector: 'app-product',
  templateUrl: './app-product.html' // put what you want in  view
})
export class AppProductComponent implements OnInit, OnChanges {
  @Input() product : any;
  @Output() afterAdd = new EventEmitter<any>();
  public id: number;
  constructor(private modalService: BsModalService) {}

  ngOnInit() {
  }

  public ngOnChanges (changes: SimpleChanges) {
    console.log(this.product);// see product here
    this.id = changes.product.currentValue.id;
    if(this.id){
        // see here if some change occur in the first component
    }
  }
  /**
  *This function returns the modified product in DemoModalServiceStaticComponent => callAfterAdd
  */
  someOtherFunction(){
  //change something in product 
    //then send the modified data to the 
    this.afterAdd.emit (this.product);
  }
}

Вот вид первого компонента

<button type="button" class="btn btn-primary" (click)="openModal(template)">Create template modal</button>

<ng-template #template>
  <div class="modal-header">
    <h4 class="modal-title pull-left">Modal</h4>
    <button type="button" class="close pull-right" aria-label="Close" (click)="modalRef.hide()">
      <span aria-hidden="true">&times;</span>
    </button>
  </div>
  <div class="modal-body">
    <app-product [product]=dataTopass (afterAdd)="callAfterAdd(modifiedProduct)"></app-product>
  </div>
</ng-template>
0 голосов
/ 11 октября 2018

Откуда вы пытаетесь получить доступ к ребенку и когда?

Попробуйте открыть его в жизненном цикле AfterViewInit(), потому что, возможно, он не является инициатором, когда пытается принять его.

...