我收到此错误
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
有谁知道是什么原因造成的?