3

外部gemを使用せずにRails 3.2でファイル(.txt)をアップロードする必要があるタスクがあります(残念ながら交渉できません)ファイルもデータベースに保存する必要があります。次のコードがありますが、フォームを使用して新しい添付ファイルをアップロード/作成しようとすると、エラーが返されます。

No route matches [POST] "/attachments/create" 

モデルから upload_file を使用して create アクションが呼び出されているようには見えませんが、修正方法がわかりません。誰かが私を正しい方向に向けることができれば、それは大歓迎です。

したがって、私のコードは次のとおりです。

添付ファイルController.rb

class AttachmentsController < ApplicationController

 def show
   @attachment = Attachment.find(params[:id])
   end_data @attachment.data, :filename => @attachment.filename, :type =>  @attachment.content_type
 end

 def create      
   return if params[:attachment].blank?

   @attachment = Attachment.new
   @attachment.uploaded_file = params[:attachment]

   if @attachment.save
      flash[:notice] = "Thank you for your submission..."
      redirect_to root_path
   else
      flash[:error] = "There was a problem submitting your attachment."
      render "new"
     end
   end
  end

添付ファイル.rb

class Attachment < ActiveRecord::Base

 def uploaded_file=(incoming_file)
   self.filename = incoming_file.original_filename
   self.content_type = incoming_file.content_type
   self.data = incoming_file.read
 end

 def filename=(new_filename)
   write_attributes("filename", sanitize_filename(new_filename))
 end

 private

 def santize_filename(filename)
   just_filename = File.basename(filename)
   just_filename.gsub(/[^\w\.\-]/, '_')
  end
 end

ビュー/添付ファイル/new.html.erb

<%= form_tag('create', multipart: true) do %>
  <%= file_field_tag 'attachment' %>
  <%= submit_tag "upload", class: 'btn btn-primary' %>
<% end %>

ルート.rb

 resources :attachments

レーキルート

    attachments GET    /attachments(.:format)          attachments#index
                POST   /attachments(.:format)          attachments#create
 new_attachment GET    /attachments/new(.:format)      attachments#new
edit_attachment GET    /attachments/:id/edit(.:format) attachments#edit
     attachment GET    /attachments/:id(.:format)      attachments#show
                PUT    /attachments/:id(.:format)      attachments#update
                DELETE /attachments/:id(.:format)      attachments#destroy
           root        /                               static_pages#home

スタック情報も

2012-07-30 22:21:57 +0100 で 127.0.0.1 の POST "/attachments/create" を開始しました

ActionController::RoutingError (No route matches [POST] "/attachments/create"):
actionpack (3.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
actionpack (3.2.3) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
railties (3.2.3) lib/rails/rack/logger.rb:26:in `call_app'
railties (3.2.3) lib/rails/rack/logger.rb:16:in `call'
actionpack (3.2.3) lib/action_dispatch/middleware/request_id.rb:22:in `call'
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
activesupport (3.2.3) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
rack (1.4.1) lib/rack/lock.rb:15:in `call'
actionpack (3.2.3) lib/action_dispatch/middleware/static.rb:62:in `call'
railties (3.2.3) lib/rails/engine.rb:479:in `call'
railties (3.2.3) lib/rails/application.rb:220:in `call'
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
railties (3.2.3) lib/rails/rack/log_tailer.rb:14:in `call'
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
/Users/garyrogers/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
/Users/garyrogers/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
/Users/garyrogers/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'

ここからどこへ行くべきかわからない。

4

2 に答える 2

9

このように書く代わりに:

<%= form_tag('create', multipart: true) do %>

試す:

<%= form_tag({:controller => 'attachment', :action => 'create'}, :multipart => true) do %>

ここから多くの良い例を見つけることができます: http://guides.rubyonrails.org/form_helpers.html

さらに、おそらく次の行を変更する必要があります。

<%= submit_tag "upload", class: 'btn btn-primary' %>

に:

<%= submit_tag "upload", :class => 'btn btn-primary' %>

それが役に立てば幸い

更新 (2013 年 10 月 22 日現在): 元の回答は、Rails (レガシー Ruby 1.8.7) の学習を開始したときに書かれました。:class => "btn"class: "btn"は同じです。実際、Ruby 1.9 以降では後者が好まれます。

于 2012-07-31T03:40:07.937 に答える
1

走ったrake routes?そのようなリソースの安らかなルートは、おそらくhttp://guides.rubyonrails.org/routing.html#crud-verbs-and-actions'/attachments' を見てください。

于 2012-07-30T22:33:15.053 に答える