在 posts 或 post_translations 中全球化 3 英文翻译?

发布于 2024-10-22 02:55:32 字数 121 浏览 0 评论 0原文

我有一个现有网站,其中包含 post.title 和 post.body 字段。安装 Globalize3 后,post.title 返回空白。有没有一种方法可以让我不需要将现有信息迁移到 post_translations ?

I have an existing site with fields in post.title and post.body. After I installed Globalize3, post.title returns blank. Is there a way that I don't need to migrate the existing information to post_translations?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酸甜透明夹心 2024-10-29 02:55:32

您可以通过在首先创建翻译表时将其定义为迁移数据来迁移此数据。

例如。

class TranslatePosts < ActiveRecord::Migration
  def self.up
    Post.create_translation_table!({
      :title => :string,
      :text => :text
    }, {
      :migrate_data => true
    })
  end
  def self.down
    Post.drop_translation_table! :migrate_data => true
  end
end

您必须事先删除现有的帖子翻译表。

You can migrate this data by defining it to migrate the data when creating the translations table in the first place.

eg.

class TranslatePosts < ActiveRecord::Migration
  def self.up
    Post.create_translation_table!({
      :title => :string,
      :text => :text
    }, {
      :migrate_data => true
    })
  end
  def self.down
    Post.drop_translation_table! :migrate_data => true
  end
end

You will have to drop the existing posts translations table beforehand.

夜唯美灬不弃 2024-10-29 02:55:32

嘿我有同样的问题。
发现:migrate_data =>要真正工作,您需要有 globalize3 版本 0.1.0.beta
否则它不会起作用。

您可以查看此 - https://github.com/svenfuchs/globalize3/issues/45

Hey I was having same issue.
Found that for :migrate_data => true to work you need to have your globalize3 version 0.1.0.beta
otherwise it won't work.

You can checkout this - https://github.com/svenfuchs/globalize3/issues/45

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文