我将AJAX代码添加到codeigniter的视图部分以获取输入值并将其发送到控制器:
$(document).ready(function(){
$("#1").click(function(){
var res = $('#name').attr("value");
$.ajax({
type:"POST",
url:'user/ctrl',
data:{'res':res},
success:function(result){
}
});
});
});
在控制器部分我添加了
class User extends CI_Controller {
public function ctrl()
{
if($_POST['res']=="yes"){
$res=0;
$this->load->model("insert");
$s=$this->insert->name($res);
}
else if($_POST['res']=="No"){
$res=1;
$this->load->model("insert");
$s=$this->insert->name($res);
}
}
}
现在我不知道应该在模型部分写什么来将$res
的值插入到数据库中。
答案 0 :(得分:0)
在你的控制器中你需要把它用于从ajax接收数据
$res = $this->input->get_post('res', TRUE);
...然后
class User extends CI_Controller {
public function User(){
parent::__construct();
$this->load->model('insert','model');
}
public function ctrl(){
$res = $this->input->get_post('res', TRUE);
$data = $this->model->functionForInsert($res);
}