🎄teratailクリスマスプレゼントキャンペーン2024🎄』開催中!

\teratail特別グッズやAmazonギフトカード最大2,000円分が当たる!/

詳細はこちら
Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Q&A

解決済

1回答

521閲覧

画像アップロードでエラー(3)

yamada_yuuki

総合スコア100

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

0グッド

0クリップ

投稿2019/11/21 10:16

3回も懲りずにすみません(._.)。また、画像アップロードでエラーが出てしまいました。今度は、次のエラーになってしまいました。

ActionViewTemplateError

1ActionView::Template::Error (undefined method `image' for #<Cuisine::ActiveRecord_Relation:0x000000000da1daf8>): 2 8: <tr> 3 9: <td><a href="/cuisine/<%= obj.id %>"><%= obj.cuisine %></a></td> 4 10: <td><%= obj.created_at %></td> 5 11: <td><%= image_tag @data.image.url %></td> 6 12: </tr> 7 13: <% end %> 8 14: </table> 9 10app/views/cuisine/list.html.erb:11 11app/views/cuisine/list.html.erb:7

views

1<table> 2<tr> 3<th>Cuisine</th> 4<th>time</th> 5<th>image</th> 6</tr> 7<% @data.each do |obj| %> 8<tr> 9 <td><a href="/cuisine/<%= obj.id %>"><%= obj.cuisine %></a></td> 10 <td><%= obj.created_at %></td> 11 <td><%= image_tag @data.image.url %></td> 12</tr> 13<% end %> 14</table>

model

1class Cuisine < ApplicationRecord 2 mount_uploader :image, PhotoUploader 3end

controller

1class CuisineController < ApplicationController 2 before_action :authenticate_cook!, only: :index 3 4 def top 5 @cook = current_user 6 end 7 8 def add 9 @cuisine = Cuisine.new 10 end 11 12 def create 13 if request.post? then 14 Cuisine.create(cuisine_params) 15 end 16 redirect_to '/cuisine/index' 17 end 18 19 def index 20 @cook = current_user 21 end 22 23 def list 24 @data = Cuisine.all 25 end 26 27 def show 28 end 29 private 30 31 def cuisine_params 32 params.require(:cuisine).permit(:cuisine, :reshipi, :create, :image) 33end 34end

migrate

1class CreateCuisines < ActiveRecord::Migration[6.0] 2 def change 3 create_table :cuisines do |t| 4 t.text :cuisine 5 t.text :reshipi 6 t.text :create 7 t.string :image 8 9 t.timestamps 10 end 11 end 12end

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

自己解決

すみません。やり方は忘れてしまったのですが自己解決しました。

投稿2019/11/28 10:31

yamada_yuuki

総合スコア100

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.36%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問