是否可以将HTML 5中的输入类型=文件转换为Javascript中的字节数组? 我读了一些关于这方面的文章,但提供的解决方案对我不起作用。 我试过这些: Getting byte array through input type = file, Return the Array of Bytes from FileReader()
我需要它用于我的ajax post方法。在ASP.NET MVC应用程序中,我有ViewModel,字段类型为byte [],我想将此数组写入数据库。
有问题的代码:
<input type="file" id="Receipt" />
POST方法:
$(function () {
$("#btnregister").click(function () {
$.ajax(
{
type: "POST",
url: "AddUser",
data:
{
File: (?)
}
});
});
});
感谢您的帮助。