我正在尝试在 Codeigniter 中使用 ajax 插入和检索数组数据,我尝试下面的代码不起作用任何人都可以告诉我一个解决方案。
$('#click').click(function(){
var selected = new Array();
$(".stafftable input[type=checkbox]:checked").each(function(){
selected.push(this.value);
});
var selected_member_id=localStorage.getItem('selectids');
var myarray=selected_member_id.split(','); // convert string to an array
$.ajax({
type: "POST",
url:"<?php echo base_url();?>Welcome/send_to_staff",
data: {staff_id:selected,members_id:myarray},
success:
function(data)
{
if(data==true){
// localStorage.clear();
load_unseen_notification();
}
else{
alert("localstorage not cleared");
}
}
});
});
在控制器中,但我尝试了下面的代码,但没有插入数据库表
public function send_to_staff(){
$staff_id=$this->input->post('staff_id');
$membersids[]= $this->input->post('members_id');
$members_id=json_encode($membersids);
if($staff_id !==''){
$data['staff_id']=$staff_id;
$data['members_id']=$members_id;
$inserted=$this->db->insert('ag_matched_members',$data); // insert query
if($inserted == true){
echo true;
}
else
{
echo false;
}
}
}
波斯汪