0

正如标题所述,我的路线文件中有以下内容:

  root to: 'assets#index'

  resources :assets do
    member do
      get :download
    end
  end

然而,我的输出rake routes和访问rails/info/routes都很简单:

Prefix Verb URI Pattern Controller#Action
root GET / assets#index

然而,在我看来,这些路线运行良好。

我也尝试过,bundle exec并且按照其他一些帖子的建议,我已经更新到最新版本的 bundle。它仍然适用于我的 Rails 3 应用程序。

4

1 回答 1

3

:assets 是 Rails 中的保留路径。所以你不能真正使用它。

于 2013-09-25T10:02:35.500 回答