私は Rails を初めて使用します。私のコードを調べて、どこが間違っているのかを確認できますか。Song オブジェクトを作成しようとしています。
SQLite ファイルを見ると、新しい曲が作成されていないことがわかります。
ビュー/曲/new.html.erbで
<!DOCTYPE html>
<html>
<head>
<title>MusicDiscoveryApp</title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
</head>
<body>
<%= form_for(@song, :html => {:id => 'add-to-library', :method => :post}) do |f| %>
<div class="item-info">
<%= f.select :category_id, [['Pop', 1], ['Rock', 2], ['Rap', 3], ['Reggae', 4], ['Other', 5]] , {:prompt=>"Select A Category"}, :id=>"choose-category"%>
</div>
<div class="item-info">
<%= f.text_field :name , :placeholder=>"Song Name"%>
</div>
<div class="item-info">
<%= f.text_field :price, :placeholder=>"Price"%>
</div>
<div class="item-info">
<%= f.text_area :details ,:placeholder=>"Details"%>
</div>
<div class="item-actions">
<%= f.submit "Post to Songs Library", :class=>"add-song"%>
</div>
<% end %>
</body>
</html>
song_controller.rb の「新しい」メソッド - 自動的に生成されました
def new
@song = Song.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @song }
end
end
song_controller.rb の「create」メソッド - これも自動生成
def create
@song = Song.new(params[:song])
end
お時間をいただきありがとうございます。ここで何が間違っていたのか説明していただければ幸いです。もう一度ありがとう。