前提・実現したいこと
ここに質問の内容を詳しく書いてください。
rubyで文字を打ったらDBにデータが送信される機能を作っています
発生している問題・エラーメッセージ
エラーは出ていないのですがDBに値が保存されません。
binding.pryでみて見るとしっかりと値は取れてきているのですが、なぜだかDBに保存されないです
該当のソースコード
EvaluationsController
class EvaluationsController < ApplicationController def index @evaluation = Evaluation.new end def create Evaluation.create(create_params) # binding.pry redirect_to :root and return end private def create_params params.require(:evaluation).permit(:user_id, :text) end end
Evaluationモデル
class Evaluation < ApplicationRecord belongs_to :user validates_presence_of :user_id, :text end
User モデル
class User < ApplicationRecord # Include default devise modules. Others available are: # :confirmable, :lockable, :timeoutable and :omniauthable devise :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable has_many :evaluations def name "#{family_name} #{first_name}" end def name_kana "#{family_name_kana} #{first_name_kana}" end # 以下を追記 has_attached_file :avatar, styles: { medium: "300x300>", thumb: "100x100>"} validates_attachment_content_type :avatar, content_type: ["image/jpg","image/jpeg","image/png"] end
evaluation.html.erb
<div class="row form user_profile"> <div class="col-lg-12"> <div class="image" style=""</div> <h2><span></span></h2> <div class="profile_edit"> <div> <%= form_for(@evaluation) do |f| %> <%= f.text_field :text, placeholder: "例:好きな食べ物は?" %> <%= f.submit "送信" %> <% end %> </div> </div> </div>
create_evaluations.rb
class CreateEvaluations < ActiveRecord::Migration[5.0] def change create_table :evaluations do |t| t.integer :user_id t.integer :text t.timestamps end end end
どなたか解決よろしくお願いいたします。

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。