我的提示似乎並不奏效。我不確定這是爲什麼。一直在尋找已知的問題,但到目前爲止我還沒有找到任何東西。角2 MD-提示不工作
基本上,我產生具有ngFor diverent的div。每個部門都應該有自己的工具提示。 我沒有得到任何錯誤,我已導入MdIconsModule和我使用的是最新版本:@角/材料@ 2.0.0 beta.6
這是我的HTML
<div *ngIf="selectedAfdeling">
<h1>{{selectedAfdeling.afdelingsNaam}}</h1>
<md-grid-list cols="3" rowHeight="1:1">
<div *ngFor="let kamer of selectedAfdeling.kamers">
<md-grid-tile>
<div class="kamer" [style.width.px]="kamer.width" [style.height.px]="kamer.height"
[style.background-color]="getKleur(kamer)" [routerLink]="['/patient', kamer.patient.id]">
<div mdTooltip="Tooltip!" mdTooltipPosition="right">
<div class="kamernr" *ngIf="kamerNummer">{{kamer.kamernummer}}</div>
<div class="patientnaam" *ngIf="naam">{{kamer.patient.naam}}</div>
<div class="behandeling" *ngIf="type">{{kamer.patient.behandelingstype}}</div>
<div class="behandeling" *ngIf="tijd">{{kamer.patient.behandelingstijd}}</div>
<footer class="faciliteiten">
<span *ngIf="kinderruimte && kamer.kinderverzorgingsruimte"><md-icon>child_care</md-icon></span>
<span *ngIf="salon && kamer.salon"><md-icon>event_seat</md-icon></span>
<span *ngIf="sanitair && kamer.sanitair"><md-icon>wc</md-icon></span></footer>
</div>
</div>
</md-grid-tile>
</div>
</md-grid-list>
</div>
我已經檢查出鉻元素,而且我也發現提示元素:
<div _ngcontent-c9="" mdtooltip="Tooltip!" mdtooltipposition="right" ng-reflect-position="right" ng-reflect-message="Tooltip!" style="touch-action: none; user-select: none; -webkit-user-drag: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0);">
<!--bindings={
"ng-reflect-ng-if": "true"
}--><div _ngcontent-c9="" class="kamernr">3.011</div>
<!--bindings={
"ng-reflect-ng-if": "false"
}-->
<!--bindings={
"ng-reflect-ng-if": "false"
}-->
<!--bindings={
"ng-reflect-ng-if": "false"
}-->
<footer _ngcontent-c9="" class="faciliteiten">
<!--bindings={
"ng-reflect-ng-if": "false"
}-->
<!--bindings={
"ng-reflect-ng-if": "false"
}-->
<!--bindings={
"ng-reflect-ng-if": "false"
}--></footer>
</div>
module.ts:
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {HttpModule} from '@angular/http';
import {ReactiveFormsModule} from '@angular/forms';
import {ColorPickerModule} from 'angular2-color-picker';
import {AppComponent} from './app.component';
import {AfdelingenComponent} from './afdelingen/afdelingen.component';
import {RouterModule} from "@angular/router";
import {BrowserAnimationsModule} from "@angular/platform-browser/animations";
import {NoopAnimationsModule} from '@angular/platform-browser/animations';
import {
MdCoreModule,
MdInputModule,
MdSelectModule,
MdMenuModule,
MdSidenavModule,
MdToolbarModule,
MdCheckboxModule,
MdTabsModule,
MdButtonModule,
MdCardModule,
MdIconModule,
MdGridListModule,
MdTooltipModule,
MdSlideToggleModule,
MdNativeDateModule,
MdDatepickerModule,
} from '@angular/material';
import "hammerjs";
import {AfdelingService} from "./services/afdeling.service";
import {SidenavService} from './services/sidenav.service';
import {InstellingenComponent} from './instellingen/instellingen.component';
import {PatientComponent} from './patient/patient.component';
import { HomeComponent } from './home/home.component';
@NgModule({
declarations: [
AppComponent,
AfdelingenComponent,
InstellingenComponent,
PatientComponent,
HomeComponent
],
imports: [
BrowserModule,
MdCardModule,
FormsModule,
ReactiveFormsModule,
HttpModule,
BrowserAnimationsModule,
NoopAnimationsModule,
MdInputModule,
MdSelectModule,
MdCoreModule,
MdSidenavModule,
MdNativeDateModule,
MdMenuModule,
MdButtonModule,
MdCheckboxModule,
ColorPickerModule,
MdToolbarModule,
MdIconModule,
MdGridListModule,
MdDatepickerModule,
MdTooltipModule,
MdTabsModule,
MdSlideToggleModule,
RouterModule.forRoot([
{ path: 'afdelingen/:afdelingsNaam',component: InstellingenComponent },
{ path: 'patient/:id', component: PatientComponent},
{ path: '', component: HomeComponent}
])
],
providers: [AfdelingService, SidenavService],
bootstrap: [AppComponent]
})
export class AppModule {
}
你得到一些錯誤,或者他們arent顯示?你是否將材料中的MdIconsModule導入到應用程序中?你正在使用哪些版本?需要更多信息:D –
嘿Jota,謝謝你的迅速回答!我沒有得到任何錯誤,我已導入MdIconsModule和我使用的是最新版本的 –
我在我的應用程序一個類似的東西,並沒有任何問題的作品。開始剝離模板中的元素/指令,以檢查是否導致工具提示不顯示。可以幫助更多沒有源代碼 –