在我为自己的操作创建的视图中,我有一些Java代码的用户电子邮件列表。该视图为haml格式。 我想按表单上的“提交”按钮,然后以相同的操作或其他操作访问此电子邮件列表。
我尝试使用form_tag,form_for和普通的html表单,但是我一直遇到不同的问题。我还测试了link_to和button_to标记。
这是我们要采取的行动:
module RailsAdmin
module Config
module Actions
class BulkProperties < RailsAdmin::Config::Actions::Base
RailsAdmin::Config::Actions.register(self)
register_instance_option :collection do
true
end
register_instance_option :http_methods do
[:get, :put]
end
register_instance_option :controller do
proc do
@all_users = User.all
@all_properties = UserProperty.all
@all_roles = Role.all
binding.pry
if request.get? # EDIT
respond_to do |format|
format.html { render @action.template_name }
format.js { render @action.template_name, layout: false }
end
elsif request.put? # UPDATE
binding.pry #Just testing this
end
end
register_instance_option :link_icon do
'icon-lock'
end
end
end
end
end
这是我的观点给我的问题:
%form
.multiselect-form
.wrapper{"data-children-count" => "1"}
%select.collection{:multiple => "multiple", :id => "multi"}
%hr/
%h1 List of user properties
-@all_properties.each do |prop|
%input{:name => prop.name+"checkbox", :type => "checkbox", :id => prop.name+"checkbox"}
#{prop.name}
%input{:name => prop.name, :type => "text", :id => prop.name}
%br
%input{:name => "submit", :type => "submit", :formaction => 'http://localhost:3000/admin/user/bulk_properties?Application=8&Company=1&locale=en', :method => 'put'}
%br/
%br/
结果是,我遇到一个CanCan问题,提示我“您未被授权...”。这是因为url实际上最终保存了参数,因此它试图将我重定向到一个不存在的网页。
答案 0 :(得分:1)
我实现了一个动作,该动作将带有js的文件上传到S3,并使用javascript设置表单字段的值,然后在rails admin动作中使用该网址。
我要粘贴所有内容,因为过去通过将我的方法与可行方法进行比较,在这些情况下对我有帮助。
以下是相关(简化)文件:
# app/views/rails_admin/main/update_orders_and_line_items.html.haml
= form_tag(method: :post) do
= hidden_field_tag 'uploaded-file-url', '', id: 'uploaded-file-url'
= submit_tag 'Submit', class: 'action-button-pink'
# app/assets/javascripts/google_cloud_storage_field.js
let url = get_url(fileInput);
let valueField = $('#uploaded-file-url');
valueField.val(url);
# lib/rails_admin/config/actions/update_orders_and_line_items.rb
module RailsAdmin
module Config
module Actions
class UpdateOrdersAndLineItems < RailsAdmin::Config::Actions::Base
# Might cause random bugs if enabled
register_instance_option :pjax? do
false
end
register_instance_option :http_methods do
[:post, :get]
end
register_instance_option :controller do
proc do
if request.post?
url = params['uploaded-file-url']
do_stuff_with(url)
elsif request.get?
# [...]
end
end
end
end
end
end
end
我相信您的错误源是使用%form
标记,表单的默认方法是GET,这就是为什么您的浏览器会尝试将您重定向到某个页面,如果您像我一样{{1 }},并确保电子邮件在hidden_field_tag值上,您将在action.rb