我正在使用NetTutsPlus 教程上传图像文件并使用 FileReader 查看它们。
我有以下 JS 代码,但我实际上无法将文件作为参数传递给另一个函数。当我退出这个函数并执行类似var file = imageUpload()
的操作时,file
变量是未定义的。
我的问题是,如何在函数之间传递文件?
function imageUpload() {
///some code
/* THIS IS WHERE WE START THE CROPPING PART */
$('#imgwrapper').imgAreaSelect({ maxWidth: 600, maxHeight: 348, handles: true,onSelectChange: preview });
//some more code, the message below shows a file object
console.log("file: "+file);
return file;
}
我正在尝试将imageAreaSelect与使用 ajax 的图像文件上传一起使用。