在Rails视图中将变量分配给用户输入

时间:2013-02-20 18:26:48

标签: ruby-on-rails ruby

在我看来,用户需要使用collection_select输入一些数据。

我知道可以使用控制器中的params[]访问数据。

但是如何在选择值后立即访问用户的值?

这就是我想做的事情(不起作用):

<%= f.collection_select :photo_type, Upload::PHOTOTYPE, :to_s, :to_s, :include_blank => false, :id => "phototype"%>
<%= f.hidden_field :photo_id, :value => Photo.find_by_type(params[:photo_type]).id %>

我的问题是如何访问:photo_type中的collection_select

修改

我尝试过使用jQuery,但我不知道如何将js变量导出到视图中:

<script type="text/javascript">
    $("#phototype").change(function() {
        var phototype = $('#phototype').val()
    });
 </script>

更新

我的数据库中有两个表:

表1:photos

  1. ID
  2. photo_type_id(请参阅id表格中的photo_types
  3. 表2:photo_types

    1. ID
    2. photo_type
    3. 用户可以从下拉菜单中选择照片类型,我想通过用户输入在photo_type_id表中找到photo_types,然后将photo_type_id插入photos 1}}表

      根据编码,我改变了我的控制器:

      def create
          @photo = photo.new(params[:photo])
          photo_type_id = PhotoType.find_by_type(params[:photo_type]).id
          respond_to do |format|
            if @photo.save
              format.html { redirect_to @photo, notice: 'photo was successfully created.' }
              format.json { render json: @photo, status: :created, location: @photo }
            else
              format.html { render action: "new" }
              format.json { render json: @photo.errors, status: :unprocessable_entity }
            end
          end
      end
      

1 个答案:

答案 0 :(得分:1)

我认为您正在使用hidden_field向下一个操作发送值。你为什么不在控制器动作中做同样的事情:

  def create
    @photo = Photo.new(params[:photo])
    @photo.photo_type_id = PhotoType.find_by_type(params[:photo][:photo_type]).id
    respond_to do |format|
      if @photo.save
        format.html { redirect_to @photo, notice: 'photo was successfully created.' }
        format.json { render json: @photo, status: :created, location: @photo }
      else
        format.html { render action: "new" }
        format.json { render json: @photo.errors, status: :unprocessable_entity }
      end
    end
  end

查看:

  <%= f.collection_select :photo_type, Upload::PHOTOTYPE, :to_s, :to_s, :include_blank => false, :id => "phototype"%>

建议:标准做法是避免在视图中进行查询。