我正在使用导轨 3.2.11。我已经实现了文件上传的概念。它适用于 Firefox 和 chrome 浏览器。
形式
<iframe id="upload_target" name="upload_target" style="display:none;"></iframe>
<%= form_tag(url_for(:action => 'add_image'),
:target => 'upload_target',
:id => 'add_image_form',
:enctype => 'multipart/form-data', :multipart=>true) do %>
<%= text_field 'image_asset', 'name', :size => [60,40].min, :maxlength => "60", :id => "focus", :style=>"display:none", :value=>"site_logo" %>
<%= text_field 'image_asset', 'image_type', :value=>"Icon",:style=>"display:none"%>
<input type="file" id="file" name="image_form_file" size="36" style="display:none;" />
<a href="#" class="button" onclick="$('#file').click();">Upload a new logo image</a>
<a href="#" class="button green" onclick=" $('#add_image_form').submit();">Save</a>
<% end %>
jQuery
$('#file').live("change",function() {
$('#add_image_form').submit();
setTimeout(function(){
$.ajax({
type: "GET",
beforeSend: function(xhr){ xhr.setRequestHeader('X-CSRF-Token', $('meta[name="csrf-token"]').attr('content'))},
dataType: "html",
url: "/get_image",
data: "record_id=<%= @page.id%>&format=html",
success: function(data){
$('#site_logo').html(data);
var new_image = $('#site_logo').find("img").attr('src');
},
error: function(){
}
});
}, 6000)
我只在 IE 9、IE 10 浏览器中遇到问题。Java 脚本控制台抛出“SCRIPT5:访问被拒绝”。
我尝试过允许文件夹位置的权限,但没有用。C:\Users[USERNAME]\AppData\Local\Microsoft\Internet Explorer\DOMStor C:\Users[USERNAME]\AppData\Local\Packages\windows_ie_ac_001\AC\Microsoft\Internet Explorer\DOMStore
任何建议
谢谢