0

我遇到了 Globalize3 的问题,我已经构建了一个模块来在 Admin 中为 Preferences User 添加翻译

我按她的 ID 和语言环境显示每个翻译。但我不明白为什么当我想显示页面时没有定义语言环境。

更好展示的要点:https ://gist.github.com/266562670cd8dab28548#gistcomment-43681

谢谢你的帮助

固定的。

4

1 回答 1

1

如果您查看了在偏好主题翻译的更新操作中获得的参数(只需提高参数 [:preference_topic_translation])。您会注意到您可能已经preference_topic_option_translation作为模型中不存在的属性之一出现。

您需要以如下形式更新第 12 行:

<%= f.fields_for preference_topic_option_translation do |translate_form| %>

它应该是:

<%= f.fields_for :preference_topic_option_translations, preference_topic_option_translation do |translate_form| %>
于 2011-08-06T14:23:37.357 回答