0

你好,这是我的问题。

所有控制器在浏览器中总是返回 404 错误,但在日志中:

Processing PostController#index (for myip at 2013-02-01 13:33:02) [GET]
Rendering post/index
Completed in 2ms (View: 1, DB: 0) | 200 OK [http://site.com/]

/public 中的文件加载正常。我的路线.rb:

map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'

希望得到您的帮助。

4

2 回答 2

1

您的路线意味着您需要始终匹配以下/controller/action/id/controller/action/id.format. 您应该使用像为新 Rails 项目生成的括号一样的括号。记下关于为什么你不应该这样做的评论

# This is a legacy wild controller route that's not recommended for RESTful  applications.
# Note: This route will make all actions in every controller accessible via GET requests.
# match ':controller(/:action(/:id))(.:format)'
于 2013-02-01T09:52:47.620 回答
0

让控制器工作的一种简单方法是在路由中添加资源。这将映射所有控制器方法。

# app/controllers/controllernames_controller.rb
class ControllernamesController < ApplicationController
  def index
  end

  # and other methods you want...
end

# config/routes.rb
MyApp::Application.routes.draw do
   resources :controllername
end

你的链接会变成http://localhost/controllernames/methodname/id

然后在您的视图文件中,您可以通过以下方式添加链接:

<%= link_to "whatever_your_like_to_name", controllernames_path %>

如果您使用 Rails 提供的 RESTful 脚手架,您可以:

<%= link_to "whatever_your_like_to_name", new_controllername_path %>
# or
<%= link_to "whatever_your_like_to_name", edit_controllername_path(controllername) %>
# or 
etc...

从控制器获取单个方法的另一种方法,您可以执行以下路由:

# config/routes.rb
MyApp::Application.routes.draw do
   get 'controllernames/methodname', to: 'controllernames#methodname', as: "whatever_you_want"
end

在这种情况下,您在视图文件中的链接将是

<%= link_to "whatever_you_like_to_name", whatever_you_want_path %>
于 2013-02-01T09:56:19.580 回答