我使用的是jQuery.filer插件拖放方法。上传时运行良好。
如何检索这些图像并在编辑表单中显示它们?
根据文档:https://github.com/CreativeDream/jquery.filer/,您需要使用文件选项。
$('input').filer({
files: [
{
name: "appended_file.jpg",
size: 5453,
type: "image/jpg",
file: "/path/to/file/appended_file.jpg"
}
]
});