我在我的项目中使用paperclip。图像以编辑形式显示,但我想更改上传的图像而不是新图像。
答案 0 :(得分:0)
试试这个脚本:
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#my_image')
.attr('src', e.target.result)
.width(100)
.height(100);
};
reader.readAsDataURL(input.files[0]);
}
}