请告诉我如何在CodeIgniter中使用AJAX。我写了这样的视图,但我不知道如何使用控制器将数据发送到模型。
我的观点是:
<html>
<head>
<script>
function insert(fname,lname,age)
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","ajax_db_php.php?fname=fname&lname=lname&age=age",true);
xmlhttp.send();
}
</script>
</head>
<body>
<form>
<table>
<tr><td>First Name : </td><td> <input type="text" fname="fname"/> </td> </tr>
<tr><td>Last Name : </td><td> <input type="text" fname="lname"/> </td> </tr>
<tr><td>City : </td><td> <input type="text" fname="age"/> </td> </tr>
<input type="button" onclick="insert(fname,lname,age)">
</table>
</form>
</body>
</html>
请帮我写一下这个案例的控制器和模型。
答案 0 :(得分:1)
这是个主意:
最好使用post
使用ajax提交表单:
xmlhttp.open("POST","user_ajax",true);
xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
xmlhttp.send("fname="+fname+"&lname="+lname+"&city="+city);
<强>模型强>
class user extends CI_Model{
function insert(){
$data = array(
"fname" => $this->input->post('fname'),
"lname" => $this->input->post('lname'),
"city" => $this->input->post('city')
);
return $this->db->insert("TABLE_NAME",$data);
}
}
<强>控制器强>
class user_ajax extends CI_Controller{
function index(){
$this->load->model("user");
if(isset($_POST['fname'])){
$ths->user->insert();
}
}
}