0
私は、製品の形で2つの選択している:私の問題は、私は同じにナビゲートしたい更新後角度4 ERR_INCOMPLETE_CHUNK_ENCODING
<select *ngIf="categories$ | async as categories"
(change)="categoryChange(category.value)"
#category="ngModel"
[(ngModel)]="product.categoryId"
name="categoryId"
id="categories"
class="form-control">
と
<select
*ngIf="subCategories$ | async as subCategories"
#subCategory="ngModel"
[(ngModel)]="product.subCategoryId"
name="subCategoryId"
id="subCategories"
class="form-control">
categoryChange
categoryChange(id: number)
{
this.subCategories$ = this._subCategoriesService.getSubCategories(id)
}
です形態はproduct.id
となります。
save(product: Product)
{
let result$ = (this.productId)
? this._productService.update(this.productId, product)
: this._productService.create(product);
result$.subscribe(p =>
{
this._router.navigate(['/admin/product/', p.id])
});
}
しかし、save()
をカテゴリに変更しないで呼び出すと、エラーが発生する理由はわかりません。net::ERR_INCOMPLETE_CHUCKED_ENCODING
それはまだ動作し、変更は保存されます、私はエラーでちょうど迷惑で、私は理由を知りたいです。誰かがこれを説明できますか?