我收到了这个错误:
undefined method `test_path' for #<#<Class:0x4022a00>:0x4028ee0>
我做了这个链接:
<%= link_to "Alex Link", test_path(@test) %>
我做了这个控制器:test_controller.rb
class TestController < ApplicationController
def test
end
end
我将此添加到 routes.rb
root :to => 'test_path#hello'
我哪里做错了?
我只是想学习如何手动路由 ruby 控制器。