我想使用DevExtreme dxFileUploader上传文件并在组件中处理其内容(不使用服务url)。
我正在使用Angular 8.2.2和DevExtreme 19.1。我曾尝试使用onValueChange事件处理文件,但我仅获得文件的属性(文件名,文件大小等),而不是内容本身。
app.component.html:
<dx-file-uploader #fileUploader (onValueChanged)="processFile($event)"
[multiple]="false" accept="*" [(value)]="value" uploadMode="useButtons">
</dx-file-uploader>
app.component.ts:
public value: any[] = [];
processFile(e) {
console.log(this.value); // shows only file attributes
}
是否可以通过dxFileUploader控件访问文件内容?