使用jquery和ajax如何在蛋糕php的数据库中插入文本框值?

时间:2014-10-12 10:32:50

标签: jquery ajax cakephp

如何在cake php中使用jquery和ajax在数据库中插入文本框值? 我已经尝试了很多,但没有成功。

1 个答案:

答案 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;

}