我是Ruby的新手,如果我的问题是错误的,请不要投票给我。
我有一个DIV,其中有一个默认图像。
我想在点击此图片或div上传其他图片。我不想将此图像保存到数据库中。 此外,我不想使用表格,因为大多数回形针教程都说(如果有办法没有形式)。
答案 0 :(得分:1)
您想使用data-urls。这是我如何使用它的一个例子:
<div>
<%= f.file_field :image, :id => "image" %>
<output id="image_preview_output">
</output>
</div>
<script>
$(document).ready(function() {
// Check for the various File API support.
if (window.File && window.FileReader && window.FileList && window.Blob) {
} else {
alert('The File APIs are not fully supported in this browser.');
}
});
$('#image').change(function previewImage(evnt) {
var file = evnt.target.files[0];
// Only process image files.
if (!project_featured_image.type.match('image.*')) {
var reader = new FileReader();
reader.onload = (function(theFile) {
return function(e) {
var span = document.createElement('span');
span.innerHTML = ['<img id="image_preview" src="', e.target.result, '" title="', escape(theFile.name), '"/>'].join('');
$('#image_preview_output').html(span);
};
})(file);
// Read in the image file as a data URL.
reader.readAsDataURL(file);
}
});
</script>