- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我是 Ruby on Rails 的新手。我正在使用 ActiveAdmin,但在创建 AdminUser 时遇到问题
ActiveModel::AdminUsersController 中的 ForbiddenAttributesError#createActiveModel::ForbiddenAttributesError
请求
参数:
{"utf8"=>"✓",
"authenticity_token"=>"nvV++6GNTdA/nDzw1iJ6Ii84pZPcv2mzg0PK2Cg9Ag0=",
"admin_user"=>{"email"=>"admin2@example.com"},
"commit"=>"创建管理员用户"}*
轨道 4.1.0
activeadmin 1.0.0
ruby 2.1
app/admin/admin_user.rb
ActiveAdmin.register AdminUser do
index do
column :email
column :current_sign_in_at
column :last_sign_in_at
column :sign_in_count
default_actions
end
form do |f|
f.inputs "Admin Details" do
f.input :email
end
f.actions
end
end
app/models/admin_user.rb
class AdminUser < ActiveRecord::Base
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable,
:recoverable, :rememberable, :trackable, :validatable
after_create { |admin| admin.send_reset_password_instructions }
def password_required?
new_record? ? false : super
end
end
gem 文件
source 'https://rubygems.org'
gem 'rails', '4.1.0'
gem 'sqlite3'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'activeadmin', github: 'gregbell/active_admin'
gem 'polyamorous', github: 'activerecord-hackery/polyamorous'
gem 'ransack', github: 'activerecord-hackery/ransack'
gem 'formtastic', github: 'justinfrench/formtastic'
gem 'devise'
gem 'sdoc', '~> 0.4.0', group: :doc
config/environments/development.rb
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# since you don't have to restart the web server when you make code changes.
config.cache_classes = false
# Do not eager load code on boot.
config.eager_load = false
# Show full error reports and disable caching.
config.consider_all_requests_local = true
config.action_controller.perform_caching = false
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
# Raise an error on page load if there are pending migrations.
config.active_record.migration_error = :page_load
# Debug mode disables concatenation and preprocessing of assets.
# This option may cause significant delays in view rendering with a large
# number of complex assets.
config.assets.debug = true
# Adds additional error checking when serving assets at runtime.
# Checks for improperly declared sprockets dependencies.
# Raises helpful error messages.
config.assets.raise_runtime_errors = true
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
# Sending emails works
config.action_mailer.default_url_options = { :host => 'localhost:3000' }
end
最佳答案
Rails 4
使用强参数,将属性白名单从模型转移到 Controller 。有必要指定您希望保存在数据库中的属性。您不允许代码中的属性,这就是您收到 ActiveModel::ForbiddenAttributesError
的原因。
引用的文档ActiveAdmin : Setting up Strong Parameters
您可以通过以下方式设置强参数,使用 permit_params
方法创建一个名为 permitted_params
的方法,在覆盖 create
时使用此方法或 更新
操作:
ActiveAdmin.register AdminUser do
## ...
permit_params :attr1, :attr2 ## Add this line
end
将 :attr1
、:attr2
等替换为您要列入白名单的实际属性名称。例如::email
关于ruby - ActiveAdmin ForbiddenAttributesError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23655366/
我正在尝试使用 Active Admin 中已经存在的收集操作“download_csv”来下载资源的所有记录。但是,该操作仅下载当前页面的内容。由于我已经对资源进行了分页,因此需要从所有页面下载数据
是否可以截断为 ActiveAdmin 索引页面中的属性显示的数据?我的一个属性包含大量文本,因此它使索引页上的表格布局难以查看。 我正在尝试这个... ActiveAdmin.register Po
升级到 0.6.1 后,ActiveAdmin 仪表板不再工作。仪表板现在返回错误: /app/app/admin/dashboards.rb:1:in `': uninitialized con
在 activeadim 中,过滤器始终显示在右侧,搜索字段水平向下。我需要将它们放在索引表上方的顶部。过滤器将水平呈现。 有没有办法做到这一点? 最佳答案 有一个 sidebar plugin您可能
我有一个带有 ActiveAdmin gem 的 Rails 3 应用程序。我的目标是在自定义 View 中呈现自定义 Controller 以保持其布局。 我成功地使用以下代码在自定义 View 中
我成功安装了 ActiveAdmin: 我的 gemfile 代码: 源' https://rubygems.org ' gem 'rails', '3.2.10' # Bundle edge R
我已经利用新的 ActionText 功能构建了一个小型 rails 6 应用程序。 但是,ActiveAdmin 中似乎不支持新字段类型 (rich_text_area) 我曾尝试使用 gem ac
我想在 activeadmin 中使用 batch_edit 来编辑多个产品并将它们分配给类别。 所以,我只想获取所有选定的 ID 并在事件管理中显示其他表单,以从下拉菜单中将这些产品 ID 分配给类
我在让 ActiveAdmin 与 CanCanCan 一起工作时遇到了一些麻烦。我在 Rails 4 应用程序中使用 CanCanCan 版本 1.9.2 和 ActiveAdmin 版本 1.0.
我有代码: ActiveAdmin.register MyTable 做 Controller 做 def edit #---This code doesn't work render :te
Activeadmin 在单个文件上注册一个页面,其中包含所有逻辑:索引、显示、编辑等。 我想将 task.rb 拆分为 task_index.rb、task_show.rb、task_edit.rb
我正在寻找一种在事件管理应用程序中翻译模型名称的方法。 fr: activerecord: models: project: Projet attributes:
我有2个模型。类别和帖子。它们使用 has_many_and_belongs_to_many 关系连接。我检查了 rails 控制台并且关系有效。 我在 activeadmin 中创建了复选框以使用此
activeadmin 是否支持二级菜单?例如,我尝试在“资源”下设置“安全”,在“安全”下设置“网络安全”和“应急计划” ActiveAdmin.register_page 'Safety' do
想知道是否可以使用事件管理员设置具有默认值的过滤器?这将有助于为管理员用户预加载数据。 filter :country, :default=>'US' 最佳答案 您可以通过定义 before_fil
我有一个模型 Camping其中has_many Images .露营至少需要一张图片: class Camping "At least one image is required" accep
我在 activeadmin 页面中遇到了一个无资源表单的问题: ActiveAdmin.register_page 'TestDashboard' do menu :label => 'Test
ActiveAdmin Docs 提到以下语法来嵌套子菜单: # https://activeadmin.info/2-resource-customization.html#customize-th
我发现了有关在activeadmin中使用Active Storage上传图像的有用文章:https://medium.com/@maris.cilitis/using-ruby-on-rails-a
在我的事件管理表单中,我正在检索多个用户的电子邮件、姓名、移动属性。我想以表格格式显示它,例如电子邮件、姓名、手机作为索引。 f.input :user_ids, :label => "Us
我是一名优秀的程序员,十分优秀!