我之前发布了similar question但没有得到任何合适的解决方案。
我简化了要求:
我正在努力实现第二步。任何帮助都会很棒。欢迎所有想法。
答案 0 :(得分:0)
行中的一些事情......
HTML:
<input type="file" multiple onchange="handleFiles(this.files)">
JavaScript的:
function handleFiles(files){
//create/associates a form with each file ("files.length" files)
// ... do stuff ...
}
function doAllSubmits(){
// for each form call "doAsubmit"
}
function doASubmit(some_id, callback){
// instantiate a XmlHttpRequest
// (or use jquery or any other library you're using)
// use a POST method
// (if I remember GET has(may have) query size limitations)
// populate with the form data
// plus the respective file data
// (maybe with readAsDataURL)
}
使用引用组件的一些示例: