0

我是 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>

song_controller.rb 中的“新”方法 - 它是自动生成的

  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

感谢您的宝贵时间,我希望您能向我解释我在这里做错了什么。再次感谢。

4

1 回答 1

2

这首歌没有被保存。添加:

@song = Song.new(params[:song])
@song.save

到您的控制器创建方法或更改新创建

@song = Song.create(params[:song])
于 2013-06-27T20:27:15.110 回答