我有一个事件,我想将文件索引到事件上,如下所示:
event.target.files[0]=newFile;
其中newFile的类型为File。
我收到错误"无法在' FileList'上设置索引属性:不支持索引属性设置器。"
还有其他解决方法吗?
答案 0 :(得分:0)
<image-cropper [imageChangedEvent]="imageChangedEvent" [maintainAspectRatio]="false" [aspectRatio]=""
[resizeToWidth]="1000" [cropperMinWidth]="" [onlyScaleDown]="true" [roundCropper]="false" format="png"
outputType="base64" (imageCropped)="imageCropped($event)" (imageLoaded)="imageLoaded()"
(cropperReady)="cropperReady()" (loadImageFailed)="loadImageFailed()"
[style.display]="showCropper ? null : 'none'" [alignImage]="'left'"></image-cropper>
添加[resizeToWidth] =“ 1000”会将图像调整为所需的宽度。