我想将所有图像保存在 imageStore 中,保存、上传等工作正常,只是这个“小”问题。使用此代码,我浏览所有图像并希望保存它们。
jQuery('img').each(function () {
FS.Utility.eachFile(event, function(file) {
Images.insert(file, function (err, fileObj) {
});
});
});
问题,我将所有图像都作为图像而不是文件,但插入方法需要文件。那么如何将我的图像转换为文件?