gpt4 book ai didi

Html 表单不包含在帖子的参数文件数据中

转载 作者:行者123 更新时间:2023-11-28 01:54:10 25 4
gpt4 key购买 nike

由于我什至无法猜测的原因,我的 Rails 应用程序不再工作。我没有更改 Rails 代码中的任何内容,所以我想这可能与浏览器有关。

简单表单,由 Simple_form 生成:

<%= simple_form_for @order, :url => fillparameters_order_path(@order), :remote => true do |f| %>

<%= f.association :aspectRatio, collection: @order.project.aspect_ratios %>
<%= f.input :client_email, :as => :string %>
<%= f.input :soundtrack, :as => :file %>
<%= f.input :project_id, :as => :hidden %>
<%= f.button :submit %>
<% end %>

它生成以下内容:

form id="edit_order_4" class="simple_form edit_order" novalidate="novalidate" method="post" enctype="multipart/form-data" data-remote="true" action="/orders/4/fillparameters" accept-charset="UTF-8"
<input id="order_soundtrack" class="file optional" type="file" name="order[soundtrack]">
<input class="btn" type="submit" value="Send!" name="commit">

当然除了其他输入。

但是在点击提交按钮后,Firebug 控制台和 webrick 日志显示发送的所有内容除了我的文件字段:

Started PUT "/orders/4/fillparameters" for 127.0.0.1 at 2013-08-04 21:00:03 +0900
Processing by OrdersController#fillparameters as JS
Parameters: {
"utf8" => "✓",
"authenticity_token" => "VpddWLzi7Czzl0L+gbd5wVfjbJ1pQnfI53L86BwbH/E=",
"order" => {
"aspect_ratio_id" => "1",
"client_email" => "****@gmail.com",
"project_id" => "1"
},
"commit" => "Send!",
"id" => "4"
}

有什么想法吗,伙计们?

最佳答案

事实是:您不能在 Rails 中使用 :remote => true 选项上传文件。有两种方法允许您使用 AJAX 进行文件上传:

  1. rails 方式:使用 gem remotepart
  2. Jquery方式:使用Jquery文件上传插件,这种插件有很多,比如 https://github.com/blueimp/jQuery-File-Upload

    http://malsup.com/jquery/form/等等。

关于Html 表单不包含在帖子的参数文件数据中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18042777/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com