2

使用: - Rails 3.0.3 - Friendly_id 4.0.0 Beta 11 - Windows - i18n (0.6.0, 0.5.0) 根据“gem list”

设置: 我有一个使用瑞典语和英语作为语言进行计算的多语言网站。我正在使用friendly_id 创建对seo 友好的网址。

在我的 mysql 表中,我有列“slug”、“slug_se”和“slug_en”。我不确定是否需要使用“slug”列,它与“slug_en”相同。

问题: 使用“update_attributes”时,它会用“slug”(默认为英文)覆盖“slug_se”。因此,“slug”中的值写入“slug_se”。

疑难解答: - 我在 Google 上搜索过这个问题,但在 Google 论坛 (http://groups.google.com/group/friendly_id/browse_thread/thread/154f4a5024e23418) 上只找到了一个(未答复的)论坛主题,没有得到答复。- 我试图找到 update_attributes 的替代品,我可以通过 mysql 但那真的不整洁。

问题: - 我需要使用“slug”列吗?- 是否有不尝试更新 id 的 update_attributes 替代方法?- 你能看出我在做什么导致问题的错误吗?

代码: 型号:

  extend FriendlyId
  friendly_id :name, :use => :slugged, :use => I18n
4

2 回答 2

3

我是FriendlyId的作者。在项目的 Github 问题中问这个问题可能会更好,我只是碰巧看到了这个问题。

i18n 模块还是很新的,所以很抱歉不稳定并感谢您的反馈。:)

在回答您关于 slug 列的问题时,不,您根本不应该拥有它:只有 slug_en 和 slug_se。这是 9 月 4 日所做的更改:

https://github.com/norman/friendly_id/commit/54536464132ac8f72c96e8bda203c337f9d56aa0

因此,请尝试删除该列。如果您的问题仍然存在,请随时在 Github 上发布错误报告,我会尽快查看。

同时我会尝试添加一个测试来尝试重现你描述的问题,如果我能重现它,我一定会修复它。

于 2011-09-21T16:47:58.397 回答
0

诺曼,谢谢。我删除了 slug 列,但这并没有解决它。似乎默认 slug 覆盖了 update_attributes 处的 slug_se。

这是来自日志:

    Started POST "/vardag/procent/result" for 127.0.0.1 at 2011-09-22 07:36:02 +0200
  Processing by CalculationsController#result as HTML
  Parameters: {"utf8"=>"Ô£ô", "authenticity_token"=>"Xrq9Zf8jGl2X1G9WvqMpcN1EQw7C2lda561FN9E7ZdM=", "first_number"=>"1.0", "second_number"=>
"2.5", "operation"=>"from_a_to_b", "commit"=>"Beräkna", "calculation_type_id"=>"vardag", "id"=>"procent"}
  ←[1m←[36mCalculation Load (1.0ms)←[0m  ←[1mSELECT `calculations`.* FROM `calculations` WHERE (`calculations`.`slug_se` = 'procent') LIMIT
1←[0m
  ←[1m←[35mCalculationType Load (1.0ms)←[0m  SELECT `calculation_types`.* FROM `calculation_types` WHERE (`calculation_types`.`id` = 1) LIMI
T 1
  ←[1m←[36mCACHE (0.0ms)←[0m  ←[1mSELECT `calculations`.* FROM `calculations` WHERE (`calculations`.`slug_se` = 'procent') LIMIT 1←[0m
  ←[1m←[35mSQL (1.0ms)←[0m  BEGIN
  ←[1m←[36mCalculation Load (1.0ms)←[0m  ←[1mSELECT `calculations`.* FROM `calculations` WHERE (`slug_se` = 'percentage' OR `slug_se` LIKE '
percentage--%') AND (id <> 1) ORDER BY LENGTH(`slug_se`) DESC, `slug_se` DESC LIMIT 1←[0m
  ←[1m←[35mAREL (1.0ms)←[0m  UPDATE `calculations` SET `recently` = 'someone_realized,that,when,1.0,goes_to,2.5,result_percentage_a_to_b_inc
reased,150.0,%', `slug_se` = 'percentage', `updated_at` = '2011-09-22 05:36:03' WHERE (`calculations`.`id` = 1)

查看@36mCACHE,它(正确地)使用 slug_se = procent,然后向下两行 @36mCalculation LOAD 它选择其中 slug_se = 百分比(百分比为 slug_en)。

我将在 Git 上写一个错误报告!

编辑:我做了一些可能有帮助的调试:

我在模型中使用此方法调用更新:

 def update_recently(calculation, new_recently_string)
    raise calculation.inspect           
    calculation.update_attributes(:recently => new_recently_string.join(","))
  end

加薪创造了这个:

#<Calculation id: 1, name: "Percentage", preimp: nil, url: nil, clicks: 71, clicks_week: 71, is_local: true, comment: nil, nofollow: true, updated: nil, calculation_type_id: 1, created_at: "2011-03-12 07:04:54", updated_at: "2011-09-22 05:53:25", last_checked: nil, calculation_status_id: 2, region_id: 1, source: nil, affiliate: false, examples: nil, recently: "someone_realized,that,when,1.0,goes_to,2.5,result_p...", is_special: false, slug_en: "percentage", slug_se: "procent">

参数是:

{"utf8"=>"✓",
 "_method"=>"put",
 "authenticity_token"=>"Xrq9Zf8jGl2X1G9WvqMpcN1EQw7C2lda561FN9E7ZdM=",
 "first_number"=>"1.0",
 "second_number"=>"2.5",
 "operation"=>"from_a_to_b",
 "commit"=>"Beräkna",
 "calculation_type_id"=>"vardag",
 "id"=>"procent"}

我做了一个 raisecalculation.friendly_id.inspect 它显示“procent”。

于 2011-09-22T05:49:29.207 回答