我想修改的例子http://www.html5rocks.com/en/tutorials/file/dndfiles/#toc-reading-files使功能handleFileSelect(EVT)返回reader.result;我的意思是使圖像等功能返回base64。 我試圖把它與寫的功能,但它返回null只:( 所以我的問題是,如何讓函數返回的base64?JS函數返回空值 - 幫助
至於現在我試着寫這個片段中......
function handleFileSelect(evt) {
var files = evt.target.files; // FileList object
// Loop through the FileList and render image files as thumbnails.
for (var i = 0, f; f = files[i]; i++) {
// Only process image files.
if (!f.type.match('image.*')) {
continue;
}
var reader = new FileReader();
// Closure to capture the file information.
reader.onload = (function(theFile) {
return function(e) {
// Render thumbnail.
var span = document.createElement('span');
span.innerHTML = ['<img class="thumb" src="', e.target.result,
'" title="', theFile.name, '"/>'].join('');
document.getElementById('list').insertBefore(span, null);
};
})(f);
// Read in the image file as a data URL.
reader.readAsDataURL(f);
}
return reader.result;
}
所有有用的意見是讚賞:)
19個問題,接受的答案? – CharithJ
請發帖給出問題的代碼。 – deceze