用户从下拉列表中选择时设置变量

时间:2015-06-19 21:51:27

标签: javascript ruby-on-rails

在我的rails视图中,我有一个患者的下拉菜单。当用户选择患者时,我想将@patient设置为Patient.find(id),其中id是用户选择的项目的数据属性。

我怎样才能做到这一点?

行动:

    setTimeout(function(){
        this.say.call (this, 'call');
    }, 1000);

查看:

 def options
    @assessment = current_user.assessments.new
    @patients = current_user.patients.sort_by{|e| e.first_name.downcase}
    @patient = current_user.patients.new
    @templates = Template.all
  end

0 个答案:

没有答案