Anyを入力するには、この変数を宣言する必要がありますか?これは、HTMLテンプレートのビジュアルコードエディターに表示されます。
product-form.component.html
<div class="row">
<div class="col-md-6">
<form #form="ngForm" (ngSubmit)="save(form.value)">
<div class="form-group">
<label for="title">Title</label>
<input #title="ngModel" [(ngModel)]="product.title" name="title" id="title" type="text" class="form-control" required>
<div class="alert alert-danger" *ngIf="title.touched && title.invalid">
Title is required.
</div>
</div>
<div class="form-group">
<label for="price">Price</label>
<div class="input-group">
<span class="input-group-addon">$</span>
<input #price="ngModel" ngModel [(ngModel)]="product.price" name="price" id="price" type="number" class="form-control" required [min]="0">
</div>
<div class="alert alert-danger" *ngIf="price.touched && price.invalid">
<div *ngIf="price.errors.required">Price is required.</div>
<div *ngIf="price.errors.min">Price should be 0 or higher.</div>
</div>
</div>
<div class="form-group">
<label for="category">Category</label>
<select #category="ngModel" ngModel [(ngModel)]="product.category" name="category" id="category" class="form-control" required>
<option value=""></option>
<option *ngFor="let category of categories$ | async" [value]="category.key">{{ category.payload.val().name }}</option>
</select>
<div class="alert alert-danger" *ngIf="category.touched && category.invalid">
Category is required.
</div>
</div>
<div class="form-group">
<label for="imageUrl">Image URL</label>
<input #imageUrl="ngModel" ngModel [(ngModel)]="product.imageUrl" name="imageUrl" id="imageUrl" type="text" class="form-control" required url>
<div class="alert alert-danger" *ngIf="imageUrl.touched && imageUrl.invalid">
<div *ngIf="imageUrl.errors.required">Image URL is required.</div>
<div *ngIf="imageUrl.errors.url">Please enter a valid URL.</div>
</div>
</div>
<button class="btn btn-primary">Save</button>
</form>
</div>
<div class="col-md-6">
<div class="card" style="width: 20rem;">
<img class="card-img-top" [src]="product.imageUrl" *ngIf="product.imageUrl">
<div class="card-block">
<h4 class="card-title">{{ product.title }}</h4>
<p class="card-text">{{ product.price | currency: 'USD': symbol }}</p>
</div>
</div>
</div>
</div>
product-form.component.ts
import { Component, OnInit } from '@angular/core';
import { CategoryService } from '../../category.service';
import { ProductService } from '../../product.service';
import { Router } from '@angular/router';
import { ActivatedRoute } from '@angular/router';
import 'rxjs/add/operator/take';
@Component({
selector: 'app-product-form',
templateUrl: './product-form.component.html',
styleUrls: ['./product-form.component.css']
})
export class ProductFormComponent implements OnInit {
categories$;
product: any = {};
constructor(
private router: Router,
private route: ActivatedRoute,
private categoryService: CategoryService,
private productService: ProductService) {
this.categories$ = categoryService.getCategories();
let id = this.route.snapshot.paramMap.get('id');
if (id) {
this.productService.get(id).take(1).subscribe(p => this.product = p);
}
}
save(product) {
this.productService.create(product);
this.router.navigate(['/admin/products']);
}
ngOnInit() {
}
}
このエラーを削除するにはどうすればよいですか?アプリの機能は影響を受けていないようです。だから私が理解していることから、それは有効なJSにコンパイルされます。オブジェクトを「any」として宣言することで修正できました
可能であれば、このためのインターフェイスをセットアップする方法を学ぶことに興味があります。
角度にバグがあります。次のように* ngIfを書くと、そのコンパイラエラーは消えます。
<div *ngIf="price.errors['required']">
「?」を追加してみてください「価格」の後。
このような:
<div *ngIf="price?.errors.required">Price is required.</div>
<div *ngIf="price?.errors.min">Price should be 0 or higher.</div>
私はVSコードでも同じ問題を抱えていました。条件の前に!!
を使用してのみ解決しました。
試してください:
<div *ngIf="!!price.errors.required">Price is required.</div>
<div *ngIf="!!price.errors.min">Price should be 0 or higher.</div>
詳細: https://github.com/angular/vscode-ng-language-service/issues/126
<div class="alert alert-danger" *ngIf="email.touched && !email.valid">
<div *ngIf="email.errors['required']">Email is required</div>
<div *ngIf="email.errors['minlength']">Email should be minimum {{ email.errors['minlength']['requiredLength'] }} characters</div>
<div *ngIf="email.errors['maxlength']">Email should be maximum {{ email.errors['maxlength']['requiredLength'] }} characters</div>
<div *ngIf="email.errors['pattern']">Email doesn't match the pattern.</div>
</div>
FormArray
を使用してビューのFormGroup
内のngFor
コントロールにアクセスしようとすると同様のエラーが発生しました。
この質問に対するいくつかの回答は部分的に機能し、コンパイルエラーまたはプロジェクトビルドの失敗を引き起こしました。例えば:
libraryForm.get('books') //compile error
libraryForm.controls['books'].controls' //build failure
これまでのところ、以下のソリューションのみが私のために機能します:
libraryForm['controls']['books']['controls']
要素全体:
<div [formGroupName]="i" *ngFor="let book of libraryForm['controls']['books']['controls'];let i = index">
errors
プロパティの代わりにhasError()
メソッドを使用すると、修正されます。
次のように使用します。
<div *ngIf="price.hasError('required')">Price is required.</div>
プロパティの前に疑問符を追加
<label [attr.data-error]="Password.errors!=null?(Password?.errors.Required?'Required
field!':'Minimum 3 Characters Needed'):''">Password</label>
私も同じ問題を抱えていました。アントニオ・セザール・ジュニオールの回答のおかげで解決しました。
https://stackoverflow.com/a/53403416/8992452 のみを使用して
!!
<div *ngIf="submitted && f.username.errors">
<p *ngIf="f.username.errors.required">Email is required</p>
<p *ngIf="f.username.errors.email">The mail address is invalid</p>
</div>
前のプロジェクトで働いていて、次に変更されました:
<div *ngIf="submitted && !!f.username.errors">
<p *ngIf="!!f.username.errors.required">Email is required</p>
<p *ngIf="!!f.username.errors.email">The mail address is invalid</p>
</div>