Angular2 ng2-popover hide() не работает

app.module.ts

import { PopoverModule } from 'ng2-popover';
@NgModule({
  declarations: [ ...],
  imports: [PopoverModule],
  providers: []
})

example.html

<a [popover]="customPopover" [popoverOnHover]="true" [popoverCloseOnMouseOutside]="true" href="www.google.com" (click)="$event.stopPropagation()" target="_blank">{{name}}</a>
    <!--Popover content -->
    <popover-content #customPopover title="{{name}}" placement="right" 
      [closeOnClickOutside]="true" [closeOnMouseOutside]="true">
      <span class="popoverDesc">{{description}}</span><br /><br />
      <a href="{{websiteLink | formatUrl:'url'}}" (click)="$event.stopPropagation()" target="_blank">{{websiteLink | formatUrl:'text'}}</a><br /><br />
      <button class="btn btn-secondary popoverBtn" (click)="toggleAddToListModalPopover($event)">Add to list</button>
     </popover-content>

example.component.ts

import { PopoverContent } from 'ng2-popover';

@ViewChild('customPopover') customPopover: PopoverContent;

protected toggleAddToListModalPopover(e):void {
  this.customPopover.hide();
  this.showAddToListModal = !this.showAddToListModal;
  e.stopPropagation();
}

Я хочу, чтобы скрыть поповер, когда модальный открывается. Когда я вызываю функцию customPopover.hide(), она выдает ошибку:

error_handler.js: 51 TypeError: Невозможно прочитать свойство 'hide' из неопределенного

на PopoverContent.hide (PopoverContent.js:78)

В файле 'PopoverContent.js' есть строка this.popover.hide(); но я не знаю, как его инициализировать. Насколько я понимаю, @ViewChild только инициализирует привязку класса к #customPopover, т.е. в моем случае popover-content. Может кто-нибудь, пожалуйста, дайте мне решение для инициализации "Popover"?

2 ответа

Решение

Я думаю, что в вашем случае, this.customPopover не определено

Другой способ, которым вы можете скрыть свой popover-контент, как это

  <div>
    <popover-content #myPopover title="this header can be omitted" placement="right" [closeOnClickOutside]="true">
      <b>Very</b> <span style="color: #C21F39">Dynamic</span> <span style="color: #00b3ee">Reusable</span>
      <b><i><span style="color: #ffc520">Popover With</span></i></b> <small>Html support</small>. Click outside of this popover and it will be dismissed automatically.

      <u (click)="myPopover.hide()">Or click here to close it</u>.
    </popover-content>

    <button [popover]="myPopover">click this button to see a popover</button>
  </div>

Посмотрите, поможет ли это.

Я решил это, используя приведенный ниже код, т.е. добавив 'customPopover' в качестве параметра в функцию и вызвав метод hide(). Я не знаю, это хороший способ решить это или нет?

example.html

<button class="btn btn-secondary popoverBtn" (click)="toggleAddToListModalPopover(customPopover, $event)">Add to list</button>

example.component.ts:

protected toggleAddToListModalPopover(customPopover, e):void {
    customPopover.hide();
    this.showAddToListModal = !this.showAddToListModal;
    e.stopPropagation();
}
Другие вопросы по тегам