0

我的麻烦是我有 2 个控制器(文章和新闻),当我编辑文章时,我的更新被保存到 db。但是当我尝试对新闻做同样的事情时,我得到了这个错误

Started PUT "/1" for 127.0.0.1 at 2012-11-21 10:30:17 +0200
Processing by NewsController#index as HTML
  Parameters: {"utf8"=>"✓", "authenticity_token"=>"OyzVdh0yLz4fGAPwU+tKzuy8B5Wb0exV4+4OjE5UHt8=", "news"=>{"title"=>"fsf", "text"=>"<p>fsdfsfds</p>"}, "commit"=>"Update News", "locale"=>"1"}
1 translation's not available  


而且我在代码路由 中没有看到这两个动作之间的任何区别

scope '(:locale)' do
  get 'articles/autocomplete_article_title'
  resources :users
  resources :news do
  end
  resources :articles do
  end

# match "/news*tail" => 'news#index'
  root :to => 'News#index', as: 'news'
end

请帮忙!
提前谢谢了!

更新 1
错误似乎在路由中(因为这是抛出错误的地方

 def set_locale_from_params
    if params[:locale]
      if I18n.available_locales.include?(params[:locale].to_sym)
       I18n.locale = params[:locale]
      else
        flash.now[:notice] =
        "#{params[:locale]} translation\'s not available"
        logger.error flash.now[:notice]
      end
    end
  end

  def default_url_options
    {locale: I18n.locale}
  end

更新 2
这是发生错误时的参数转储。这里没有 id 字段

{"utf8"=>"✓", "_method"=>"put", "authenticity_token"=>"OyzVdh0yLz4fGAPwU+tKzuy8B5Wb0exV4+4OjE5UHt8=", "news"=>{"title"=>"fsf", "text"=>"<p>fsdfsfds</p>"}, "commit"=>"Update News", "controller"=>"news", "action"=>"index", "locale"=>"1"}

更新 3
尝试scope '(:locale)', :locale => /en|ru/ do在此处设置路线http://guides.rubyonrails.org/i18n.html#setting-the-locale-from-the-url-params没有帮助。

更新 4
的问题是 form_for 指向 /:id url,它被根路由覆盖。所以将 form_for 更改为form_for(@news, url: news_path(@news))并且必须放在本地...搜索如何做到这一点

4

1 回答 1

0

在 _form 文件中使用

 form_for(@news, url: {action: 'show', id: @news, locale: params[:locale]} ) 

为您的表格。像这样它不会被root覆盖

于 2012-11-21T14:38:44.600 回答