0

我收到此错误

NameError in Browse#index
undefined local variable or method `browse_path'

这是引发错误的代码

<li><%= link_to "Browse",    browse_path %></li>

这是控制器

class BrowseController < ApplicationController

def index
    @tags = tag.find(:all, :order => 'created_at DESC') 
end
end

最后是我的路线

get'/browse' => 'browse#index', :as => :index

有谁知道是什么原因造成的?

4

1 回答 1

1

Try :as => :browse for the named route.

于 2013-05-02T22:45:14.817 回答