1

美好的一天,我在 Ruby on Rails 4 中的路线有问题

错误:

undefined method `routes_path'

看法:

<h1>Load data</h1>                                
<div class="row">                       
<div class="span6 offset3">  
  `<%= form_for @route, :html => { :multipart => true } do %>  
    <%= hidden_field_tag 'current_user', @current_user %>  
    <%= file_field_tag :file %>  
    <%= submit_tag "Import", style: 'margin-top: -10px', class: "btn btn-primary" %>
<% end %>

控制器:

def new
    @route = current_user.build_route
end

def create
     nil_flag = Route.import(params[:file], current_user)
    if nil_flag == 1
      flash[:success] = "Data created."
      redirect_to route_path(current_user)
    else
      flash[:error] = "Error"
      redirect_to load_data_path
    end
end

模型:

def self.import(file, current_user)
   @user = current_user
   @route = @user.build_route
   @nil_flag = 0

   File.open(file.path, 'r') do |f|
   .
   .
   .
    #etc
end

路线

匹配'/load_data',到:'routes#new',通过:'get'

视图、控制器和模型被命名为“Route”

视图中的路线有问题还是其他问题?谢谢

4

2 回答 2

3

Just as a first impression, without looking into it in detail - you may have trouble using routes as a class name, it's already a class name under ActionDispatch.

However, I think your problem is actually your route:

match '/load_data', to: 'routes#new', via: 'get'

This isn't a resource route, it won't generate the kind of functionality that allows you to use the form tag syntax <%= form_for @route...

Either define routes as a resource:

resources :routes

Or define a url in your form:

<%= form_for @route, :url => some_url, :html => { :multipart => true } do %>  
于 2013-10-23T10:48:29.820 回答
1

马特(以前的答案作者)几乎回答了这个问题,只是想注意您还可以将as选项附加到您的路线以为其命名:

match '/load_data', to: 'routes#new', via: 'get', as: 'routes'

这将为routes_path您“定义”。

于 2013-10-23T10:59:24.537 回答