我是Rails的新手,你能检查我的代码,看看我可能会出错的地方。我正在尝试创建一个Song对象。
通过查看我的SQLite文件,我可以看到没有创建新歌。
在views / songs / 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>
来自songs_controller.rb的'new'方法 - 它是自动生成的
def new
@song = Song.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @song }
end
end
来自songs_controller.rb的'create'方法 - 也自动生成
def create
@song = Song.new(params[:song])
end
感谢您的时间,我希望您能向我解释我在这里做错了什么。再次感谢。
答案 0 :(得分:2)
这首歌没有被保存。添加:
@song = Song.new(params[:song])
@song.save
到您的控制器创建方法或更改新创建
@song = Song.create(params[:song])