我有一个bootstrap模式,当我点击按钮时,将调用此引导模型(打开弹出菜单)并传递不同的 offer_id 。
此弹出菜单打开一个表单(如编辑表单),我编辑了所有信息,然后点击编辑按钮,然后只更新了第一条记录。
例如,我想编辑 offer_id = 1 的信息,填写所有表单并提交,然后 offer_id = 1 更新 not offer_id = 5
所以我不确切地知道我错在哪里,我错过了什么..
在同一页面上修改按钮和模型( _employee_details.html.erb )
修改按钮
<div class="edit-recr-wrp1">
<button type="button" class="btn btn-primary fa fa-pencil-square-o" data-toggle="modal" data-target="#exampleModal1" data-offer_id="<%= emp['offer_letter_id'] %>" data-employee_id="<%= emp['employee_id'] %>"></button>
</div>
模态“#exampleModal1”
<div class="modal fade" id="exampleModal1" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<h2 class="text-center">Edit <span>Employee Details</span></h2>
<div class="post-new-job head-border">
<div class="alert alert-success" role="alert" id='success-job' style='display:none;'>Employee Details is successfully added.</div>
<div class="form-body">
<%= form_for :employee_details, :url =>{:controller => "hr", :action => "update" } do |f| %>
<div class="col-md-12">
<div class="mydata1">
<%= f.text_field :offer_letter_id, { class: 'form-control', id: 'offer_id-name' } %>
</div>
<div class="form-group">
<label class="control-label">Employee ID</label>
<div class="input-group"> <span class="input-group-addon"> <i class="fa fa-user"></i> </span>
<div class="mydata2">
<%= f.text_field :employee_id, { disabled: true, :required => true, placeholder: 'E12345678', class: 'form-control', id: 'employee_id-name' } %>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label">Bank Account</label>
<div class="input-group"> <span class="input-group-addon"> <i class="fa fa-university"></i> </span>
<%= f.text_field :bank_ac, { :required => true, placeholder: '06464060852634865', class: 'form-control' } %>
</div>
</div>
<div class="form-group">
<label class="control-label">Bank IFSC Code</label>
<div class="input-group"> <span class="input-group-addon"> <i class="fa fa-code"></i> </span>
<%= f.text_field :bank_ifsc, { :required => true, placeholder: 'SBI012356', class: 'form-control' } %>
</div>
</div>
<div class="form-group">
<label class="control-label">End of Date</label>
<div class="input-group"> <span class="input-group-addon"> <i class="fa fa-calendar"></i> </span>
<%= f.text_field :work_end_date, { placeholder: 'MM/DD/YYYY', id: 'datepicker1', class:"datepicker_style" } %>
</div>
</div>
<div class="form-group">
<label class="control-label">Gender</label>
<div class="input-group"> <span class="input-group-addon"> <i class="fa fa-male fa-female"></i> </span>
<%= f.select :gender, ['Male', 'Female'], { :required => true }, class: "form-control" %>
</div>
</div>
<div class="form-group">
<label class="control-label">Spouse Name</label>
<div class="input-group"> <span class="input-group-addon"> <i class="fa fa-user"></i> </span>
<%= f.text_field :spouse_name, { :required => true, placeholder: 'Father/Mother/Wife name', class: "form-control" } %>
</div>
</div> <br>
<div class="form-group">
<a><%= f.submit "Edit Employee Details", :class => "btn btn-primary" %></a>
</div>
</div>
<div class="col-md-2"></div>
<%- end -%>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
// edit employee information
$('#exampleModal1').on('show.bs.modal', function (event) {
var button = $(event.relatedTarget)
var offer_id = button.data('offer_id')
var employee_id = button.data('employee_id')
var modal = $(this)
modal.find('.mydata1 input').val(offer_id)
modal.find('.mydata2 input').val(employee_id)
});
</script>
<script type="text/javascript">
// edit employee information
$(document).ready(function () {
$('#datepicker1').datepicker({
format: "dd/mm/yyyy"
});
});
</script>
hr_controller.rb
class HrController&lt; ApplicationController
def new
@employees = EmployeeDetail.new
end
# edit employee information
def edit
@employees = EmployeeDetail.find_by(params[:offer_letter_id])
end
def create
@employees = EmployeeDetail.new(employee_params)
if @employees.save
redirect_to :action => 'internal_employee_page'
else
redirect_to :action => 'internal_employee_page'
end
end
def show
@employees = EmployeeDetail.find(params[:id])
end
def update
@employees = EmployeeDetail.find_by(params[:offer_letter_id])
if @employees.update(employee_params)
redirect_to :action => 'internal_employee_page'
else
redirect_to :action => 'internal_employee_page'
end
end
private
def employee_params
params.require(:employee_details).permit(:offer_letter_id, :employee_id, :bank_ac, :bank_ifsc, :spouse_name, :gender, :work_end_date)
end
end
的routes.rb
resources :hr
get 'hr/edit'
post 'hr/update'
答案 0 :(得分:0)
关于编辑和更新方法,你有一些想念。你应该通过id找到,我的意思是它应该像
@employees = EmployeeDetail.find(id)
其次请在更新方法中写一个加注,以检查传递数据的真实表单或仅传递第一个数据,这就是为什么它只更新了您的第一列。 在def update =&gt;
raise params.inspect
然后你会确定自己的参数是否正确,def employee_params方法是否有效?
答案 1 :(得分:0)
你应该使用
def update
@employees = EmployeeDetail.find(params[:employee_details][:offer_letter_id])
如果offer_letter_id
是您的主键或
def update
@employees = EmployeeDetail.find_by(offer_letter_id: params[:employee_details][:offer_letter_id])
在任何其他情况下......