我正在使用rails4,activeadmin,globalize和activeadmin-globalize。我创建了一个测试应用程序,但是它对我来说无法正常工作。
我有一个模型类model.rb
class Post < ActiveRecord::Base
active_admin_translates :title, :text do
validates_presence_of :title
end
end
并适当迁移
class CreatePosts < ActiveRecord::Migration
def up
create_table :posts do |t|
t.timestamps
end
Post.create_translation_table! title: :string, text: :text
end
def down
drop_table :posts
Post.drop_translation_table!
end
end
活动管理员页面的配置如下
ActiveAdmin.register Post do
permit_params :title, :text, translations_attributes: [:title, :text, :locale]
index do
translation_status
default_actions
end
form do |f|
f.translated_inputs 'Translated fields', switch_locale: false do |t|
t.input :title
t.input :text
end
f.actions
end
end
当我在ActiveAdmin中创建新记录时,一切都将正常运行并保存本地化。问题是,当我尝试编辑和保存该记录时,没有任何改变。
有人可以告诉我我在做什么错吗?有什么可行的示例解决方案可供我下载并尝试一下?
更新:
我刚刚发现,每当我尝试更新记录时,都会在翻译表中创建新的翻译记录元组。 ActiveAdmin仍然看到第一个。
最佳答案
您必须在permit_params处将:id添加到translations_attributes:
permit_params :title, :text, translations_attributes: [:id, :title, :text, :locale]
关于ruby-on-rails - activeadmin-globalize不更新记录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23547401/