医療用ウェブサイトを開発中です。医薬品の量が<の場合、medicament.component.HTMLページに警告が表示されます。 私はこれでした:角2型エラー:定義されていない 'toUpperCase'のプロパティを読み取ることができません
<span *ngFor="let medicament of medicaments" >
<span *ngIf="{{medicament.quantity}} < 50">
<div class="callout callout-danger lead">
<h4>Alert!</h4>
<p>Vous devez charger le stock de medicaments {{medicament.nom}}
de type {{medicament.type}} </p>
</div>
</span></span>
をしかし、それは動作しない理由を私は知らない、エラーは次のとおりです。
> Unhandled Promise rejection: Template parse errors:
TypeError: Cannot read property 'toUpperCase' of undefined ("<span
*ngIf="medicaments">
<span *ngFor="let medicament of medicaments" >
<span [ERROR ->]*ngIf="{{medicament.quantity}} < 50">
<div class="callout callout-danger lead">
"): [email protected]:18
Can't bind to '*ngIf' since it isn't a known property of 'span'.
("<span *ngIf="medicaments">
<span *ngFor="let medicament of medicaments" >
<span [ERROR ->]*ngIf="{{medicament.quantity}} < 50">
<div class="callout callout-danger lead">
"): [email protected]:18
た文字列にあなたを行いますtoUpperCaseを使用しようとしますか?あなたのコントローラや他のJSを提供できますか? – Sandwell