使用Sequel从Sqlite3表中的下拉框传递值

时间:2013-11-14 15:54:42

标签: drop-down-menu sqlite sinatra sequel slim-lang

我正在尝试创建一个表单,其中用户提供相册的标题并从下拉框中选择艺术家姓名。问题是我不知道如何从下拉框中获取值。新专辑保存时没有任何artist_id。我正在使用Sqlite3和Sequel。

DB.create_table?(:artists) do
        primary_key :id
        String :name
    end
    DB.create_table?(:albums) do
        primary_key :id
        foreign_key :artist_id, :artists
        String :title
    end


class Album<Sequel::Model
  many_to_one :artist
end
class Artist<Sequel::Model
  one_to_many :albums
end

get '/albums/new' do
@album=Album.new
@artists=Artist.all
slim :new_album
end

post '/albums' do
album=Album.create(params[:album])
redirect to('/albums/#{album.id}')
end

我的苗条文件是

/new_album.slim

h1 Add A New Album
form method="POST" action="/albums"
  == slim :album_form



/album_form.slim

label for="title" Title:
input#title type="text" name="album[title]" value="#{@album.title}"
label Performed by:
select value="#{@album.artist_id}" 
  - if @artists.any?
    ul#artists
      -@artists.each do |artist|
        <option name="song[artist_id]" value="#{artist.id}"> #{artist.name}</option>

input type="submit" value="Save Album"

创建了下拉框,但我不知道如何在数据库中保存我的选择。欢迎任何建议。

1 个答案:

答案 0 :(得分:0)

通过更改此

select value="#{@album.artist_id}" 

到这个

select name="album[artist_id]"

将值传递给数据库