私のCodeigniterビューでは、jquery ajax関数を介して現在および新しいパスワードをコントローラーに送信する次のコードがありますが、データがコントローラーに渡されていないようです。あなたがこれで私を助けることができるかどうか見てください。
var url = '<?php echo base_url();?>index.php/it_inventory/change_my_pass';
$.ajax({
type: "POST",
url: url,
//datatype: "json",
data:'cu_pass=' + cu_pass + '&new_pass=' + new_pass,
success: function(r){
if(r==1){
alert("Password Changed Successfully!");
}else{
alert("Error changing password!");
}
}
});
コントローラ:
public function change_my_pass($cu_pass="", $new_pass=""){
//$cu_pass = $this->input->post('cu_pass');
//$new_pass = $this->input->post('new_pass');
echo $this->it_inventory_model->change_my_pass($cu_pass, $new_pass);
}