3 回答
TA贡献1783条经验 获得超4个赞
使用此代码:-
function saveAnswer(){
var inputAnswer = $('#userAnswer').val();
$.ajax({
type: "GET",
url: GLOBAL_URL + '/Session/saveAnswer?&inputAnswer='+inputAnswer,
dataType: 'json',
sucess:function(result){
alert(result);
},
});
}
结果将携带您的 id 并将显示在警报框中,并且从 ajax 返回 id 使用此代码:-
function saveAnswer(){
$data = array(
'id' => uuid(false),
'answer' => $this->input->get_post("inputAnswer")
);
$this->db->insert('tableAnswer', $data);
$id = $this->db->insert_id;
if($id > 0){
echo $id;
}
}
如果你得到了结果,别忘了勾选它,以便其他人可以得到帮助
- 3 回答
- 0 关注
- 99 浏览
添加回答
举报