如何在cake php中使用jquery和ajax在数据库中插入文本框值? 我已经尝试了很多,但没有成功。
答案 0 :(得分:1)
您可以这样处理:
ajaxUrl将是控制器/动作
$.ajax({
type : "post",
url : ajaxUrl
data: {"input1" : $("input[name='text-box']").val()}
}).done(function(data){
console.log(data);
});
然后在控制器中
public function action(){
$this->autoRender = false;
$this->request->onlyAllow('ajax');
$input = $_POST["input1"];
//Do the Database Input here
return Suceess/Failure;
}