在angular2中使用aberezkin / ng2-image-upload
我的模板
<image-upload
[max]="1"
[url]="uploadUrl"
[preview]="true"
[buttonCaption]="'Select Images!'"
[dropBoxMessage]="'Drop your images here!'"
(onFileUploadFinish)="imageUploaded($event)"
(onRemove)="imageRemoved($event)"
(isPending)="disableSendButton($event)"
></image-upload>
这是电子商务网站产品捕获/编辑屏幕的更大表格的一部分,包括此图片上传
这对于新产品和新图像来说都很棒但如果我必须编辑现有产品并因此从服务器获取该产品的数据(包括图像),我该如何使用此预先填充图像上传图像因此允许用户保留或删除/更改它?
还有一种方法可以过滤允许的文件类型吗?
答案 0 :(得分:0)