我是新的Codeigniter开发人员,我创建了程序用户,并在选项卡部分的信号形式提交中创建了多服务。用户可以在两个服务的所有字段中单击提交按钮模式窗口,显示显示每个服务的“是或否”单选按钮,用户可以选中一个“是”另一个“否”数据拆分保存不同的表。我不清楚,请帮助我如何将数据保存在表中。
if (services.length) {
$.each(services, function(index, value){
$('input:radio[name=rfcConfirm_'+index+']').change(function(){
$(this).attr('checked', true);
});
if (value=='guide') {
var service_type = 'guide';
service_type = service_type.toLowerCase().replace(/\b[a-z]/g, function(letter) {
return letter.toUpperCase();
});
var rate = $("#gui_rate").val();
}
if (value=='assistant') {
var service_type = 'assistant';
service_type = service_type.toLowerCase().replace(/\b[a-z]/g, function(letter) {
return letter.toUpperCase();
});
var rate = $("#assistant_rate").val();
}
$("#getCodeModal").modal('show');
// var jsonArray = JSON.stringify(data);
html = '<div class="service_modal"><h4>'+service_type+'</h4>';
html += 'Already you have accepted quote amount <strong>$'+ rate +'</strong>. Do you have confirm service?';
html +='<br/>';
html += '<div class="" style="text-align:right"><input type="radio" class="yes" name="rfcConfirm_'+index+'" id="yes_'+index+'" value="yes">Yes <input type="radio" class="no" name="rfcConfirm_'+index+'" id="no_'+index+'" value="No">No</div></div>';
$(".modal-body").html($(".modal-body").html() + html);
});
}
感谢与问候, 亚当·何塞