我正在尝试 Dart,但我不知道如何将图像从用户发送到服务器。我有我的输入标签,我可以在 DART 代码中找到它,但我似乎无法从中读取。我正在尝试类似的东西:
InputElement ie = document.query('#myinputelement');
ie.on.change.add((event){<br/>
InputElement iee = document.query('#myinputelement');<br/>
FileList mfl = iee.files;<br/>
File myFile = mlf.item(0);<br/>
FileReader fr = new FileReader();
fr.readAsBinaryString(myFile);
String result = fr.result; //this is always empty
});
使用包含以下内容的html:
<input type="file" id="myinputelement">
我真的希望你不能帮助我,我有点卡住了。我可能只是想念如何为文件阅读器进行加载,或者我做错了。