我使用以下表单
标签@jobs,其中包含job_photos.
<% form_for @jobs,:html => { :multipart => true },:remote => true do |f| %>
该表单工作正常非远程,但如果我添加的远程=> true,表单提交,返回create.js,但不保存任何数据库或错误?
事情是,你不能通过AJAX发布多部分表单.这不是轨道的限制.为了规避这一点,您需要使用iframe技术(可以使用
responds_to_parent插件更容易)或使用像Flash或Silverlight这样的技术.
原文链接:https://www.f2er.com/ruby/272659.html