前提・実現したいこと
railsにてフリマアプリのコピーサイトを作成しております。
TOPページから遷移したnewアクションのnew.html.hamlにてform_forを使用し出品(ツイート投稿機能のように簡単に実装してます)ボタンを押すと、コントローラーで定義しているrootへ遷移するはずが画面が変わらないままエラーも出てこず、formに記載した内容もDBへ保存されていな状況です。
サーバーを起動しているターミナルを確認すると、下記表示になっておりました。
ActionController::RoutingError (No route matches [GET] "/uploads/product/image/7/JYUN923_10_TP_V.jpg"):
初めは思い通りに動いていたもののチームで作業しているため何かが影響したのかと考えられますが、原因がわからない状況です。
発生している問題・エラーメッセージ
エラーメッセージ
actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in call' web-console (3.7.0) lib/web_console/middleware.rb:135:in
call_app'
web-console (3.7.0) lib/web_console/middleware.rb:30:in block in call' web-console (3.7.0) lib/web_console/middleware.rb:20:in
catch'
web-console (3.7.0) lib/web_console/middleware.rb:20:in call' actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in
call'
railties (5.2.3) lib/rails/rack/logger.rb:38:in call_app' railties (5.2.3) lib/rails/rack/logger.rb:26:in
block in call'
activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in block in tagged' activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in
tagged'
activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in tagged' railties (5.2.3) lib/rails/rack/logger.rb:26:in
call'
sprockets-rails (3.2.1) lib/sprockets/rails/quiet_assets.rb:13:in call' actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in
call'
actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in call' rack (2.0.7) lib/rack/method_override.rb:22:in
call'
rack (2.0.7) lib/rack/runtime.rb:22:in call' activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in
call'
actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in call' actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in
call'
rack (2.0.7) lib/rack/sendfile.rb:111:in call' railties (5.2.3) lib/rails/engine.rb:524:in
call'
puma (3.12.1) lib/puma/configuration.rb:227:in call' puma (3.12.1) lib/puma/server.rb:660:in
handle_request'
puma (3.12.1) lib/puma/server.rb:474:in process_client' puma (3.12.1) lib/puma/server.rb:334:in
block in run'
puma (3.12.1) lib/puma/thread_pool.rb:135:in `block in spawn_thread'
Started GET "/uploads/product/image/7/JYUN923_10_TP_V.jpg" for ::1 at 2019-11-02 16:03:00 +0900
ActionController::RoutingError (No route matches [GET] "/uploads/product/image/7/JYUN923_10_TP_V.jpg"):
該当のソースコード
ruby
1#products_controller 2 3class ProductsController < ApplicationController 4 def index 5 @product = Product.all 6 @parents = Category.all.order("id ASC").limit(13) 7 end 8 9 10 def new 11 @product = Product.new 12 end 13 14 def create 15 # raise.params.inspect 16 @product = Product.create(product_params) 17 if @product.save 18 redirect_to root_path 19 end 20 end 21 22 def destroy 23 @product == Product.find(params[:id]) 24 if @product.user_id == current_user.id 25 @product.destroy 26 # redirect_to 'show_exhibit' 実装後コメントアウト外す 27 end 28 end 29 30 31 def show 32 @product = Product.find(params[:id]) 33 end 34 35 def buyer_show 36 @product = Product.find(params[:id]) 37 end 38 39 private 40 def product_params 41 params.require(:product).permit(:title, :image, :text, :price) 42 end 43end 44 45#new.html.haml 46 47 48%h1 出品フォーム 49= form_for @product do |f| 50 %h4 出品画像 51 = f.file_field :image 52 %br/ 53 %h4 商品名 54 = f.text_field :title, placeholder: '商品名(必須 40文字まで)' 55 %br/ 56 %h4 商品の説明 57 = f.text_area :text, placeholder: '商品の説明' 58 %br/ 59 %h4 価格 60 = f.number_field :price, placeholder: '例) 300' 61 %br/ 62 = f.submit :"出品する" 63 64 = link_to "もどる", root_path 65 66#routes.rb 67 68Rails.application.routes.draw do 69 devise_for :users 70 root to: 'products#index' 71 # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 72 resources :users, only: [:show, :edit, :update] 73 resources :products do 74 member do 75 get :buyer_show 76 end 77 end 78end 79 80 81
試したこと
画像の保存に問題があるのかと思い、image_uploaderなど確認しましたが問題なさそうでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/04 10:32