实际上,我对Angular2还不熟悉。在post方法中,我不知道如何以angular2上传图像。
还有其他字段,如(产品名称、类型、类别等),以及我想发布图像的字段。
下面我提到了我的Html组件。ts和服务。ts。
那么请告诉我怎么做?
HTML
<div class="form-group image">
<input type="file" (change)="onfileSelected($event)" class="form-control" multiple="">
<span style="padding-left:22%">
<a href="#">
<i class="fa fa-pencil fa-lg" aria-hidden="true"></i>
</a> |
<a href="#">
<i class="fa fa-trash-o fa-lg" aria-hidden="true"></i>
</a>
</span>
</div>
组成部分ts
onfileSelected(event) {
console.log(event);
this.selectedFile = <File>event.target.files[0];
}
createNewProduct(productForm: NgForm) {
this.productService.save_user(productForm.value)
.subscribe(response => {
const toast_parameter = this.notificationService.getToast('success', 'New Product', 'Inserted Successfully');
this.toastConfig = toast_parameter.config;
this.toasterService.popAsync(toast_parameter.toast);
},
error => {
const toast_parameter = this.notificationService.getToast('error', 'New Product', 'Error Occurred!!');
this.toastConfig = toast_parameter.config;
this.toasterService.popAsync(toast_parameter.toast);
});
}
服务ts
save_user(product_data: any): Observable<any[]> {
const httpOptions = {
headers: new HttpHeaders({
'Content-Type': 'application/json',
}),
};
return this.http.post('http://localhost:8000/product/', product_data, httpOptions)
.map(response => response)
.catch(error => Observable.throw(error.statusText));
};
模型py公司
class Product(models.Model):
image = models.ImageField(upload_to='myphoto/%Y/%m/%d/', null=True, max_length=255)
pro_name = models.CharField(max_length=25)
description = models.CharField(max_length=150)
category = models.ForeignKey(Category,on_delete=models.CASCADE)
sales = models.CharField(max_length=25)
cost = models.CharField(max_length=25)
taxable = models.BooleanField(default=False, blank=True)
tax_details= models.CharField(max_length=250)
type_units = models.ForeignKey(Units, on_delete=models.CASCADE)
hsn = models.CharField(max_length=10)
序列化程序。py公司
class ProductSerializer(serializers.HyperlinkedModelSerializer):
image = serializers.ImageField(required=False, max_length=None, allow_empty_file=True, use_url=True)
class Meta:
model = Product
fields = ('id','image','pro_name','description','category','sales','cost','taxable','tax_details','type_units','hsn')