[onic]ion 콘텐츠가 원활하게 작동하지 않을 때 체크포인트
3523 단어 ionicion-content
각양각색의 고전 끝에 마침내 자신이 예상치 못한 잘못을 저질렀다는 것을 알아차리지 못했다.
개인적으로 반성합니다. 조심하지 않고div를 사용하지 말고 ng-container를 사용하는 것이 좋습니다.
버전 등
<div *ngIf="isShowIntro">
<app-introduction></app-introduction>
</div>
<div *ngIf="!isShowIntro">
<ion-header>
<ion-toolbar color="primary">
<ion-title>{{'APPTITLE'| translate }}</ion-title>
</ion-toolbar>
</ion-header>
<ion-content [fullscreen]="true">
<app-title></app-title>
</ion-content>
</div>
수정된 코드
<ng-container *ngIf="isShowIntro">
<app-introduction"></app-introduction>
</ng-container>
<ng-container *ngIf="!isShowIntro">
<ion-header>
<ion-toolbar color="primary">
<ion-title>{{'APPTITLE'| translate }}</ion-title>
</ion-toolbar>
</ion-header>
<ion-content [fullscreen]="true">
<app-title></app-title>
</ion-content>
</ng-container>
고찰하다.
Reference
이 문제에 관하여([onic]ion 콘텐츠가 원활하게 작동하지 않을 때 체크포인트), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/thinkingrobo/items/f3e5145959ed34f66889텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)