POST并获取相同的Ajax请求

时间:2009-08-11 09:57:16

标签: jquery cakephp

我在我的应用程序中使用ajax帖子,如

 $.ajax({
     type: "POST",
    url: "http://localhost/FormBuilder/index.php/forms/saveForm/"+user_id,

    data: "formname="+formname+"&status="+status,
     success: function(msg){
     // alert( "Data Saved: " + msg);
                }//success
 });//ajax

在上面的ajax帖子中,我使用用户ID保存表单

我能否获得我在Ajax请求中保存的表单的表单ID。如果是这样怎么办?

我试过用Ajax单独进行。但是在这里我想混淆两个帖子并得到.. 我可以这样做.. 编辑:

COuld我返回Ajax POST方法的任何值。因为我想返回表格保存的表格ID ..

编辑:

alert("Data Saved: "+msg); gives as

 Data Saved: {"forms":[{"id":"41"},{"id":"35"},{"id":"34"},{"id":"33"},{"id":"32"},{"id":"22"},{"id":"3"},{"id":"2"},{"id":"1"}]}

以上是返回的值我想要的只是41我应该怎么做?

编辑:

     $.ajax({
     type: "POST",
    url: "http://localhost/FormBuilder/index.php/forms/saveForm/"+user_id,
    datatype: 'json',
    data: "formname="+formname+"&status="+status,
     success: function(json){
        alert( "id is : " + json.forms[0].id);
                            }//success
     });//ajax

即使我按照建议使用上面的代码尝试过,但我无法收到警告信息..

我的控制器代码就像

     function saveForm()
    {
            //$userId=$this->Session->read('userId');
        $this->data['Form']['name']=$this->params['form']['formname'];
            $this->data['Form']['created_by']=$this->Session->read('userId');
            $this->data['Form']['status']=$this->params['form']['status'];
            $this->data['Form']['access']="Private";
            $userId=$this->Form->saveForms($this->data);
            $formid = $this->Form->find('all', array('fields' => array('Form.id'),
                                    'order' => 'Form.id DESC'                                                                           ));



            $this->set('formid',$formid);

    }

我的save_form.ctp有

      <?php
     $data=array();

      ?>
     <?php foreach ($formid as $r): 


      array_push($data, array('id' => $r['Form']['id']));

    endforeach; 

     echo json_encode(array("forms" => $data));

    ?>

6 个答案:

答案 0 :(得分:7)

是的,你可以这样做。无论是否有查询字符串,您都可以发送到任意URL。

您可以访问$ _GET数组中的任何常规查询字符串参数,或者在您的情况下,从$_SERVER['REQUEST_URI']解析它。 POSTed数据将按预期在$ _POST中。

编辑Q.#1“我可以返回Ajax POST方法的任何值吗?”

是的,您可以返回任何您想要的Ajax响应。您对该响应的处理取决于您的Javascript。

编辑Q.#2“如何阅读回复中的值”

您正在获得JSON响应,如果you tell jQuery you expect that,它可以将其解析为对象。例如,尝试这样的事情:

$.ajax({
         type: "POST",
        url: "http://localhost/FormBuilder/index.php/forms/saveForm/"+user_id,
        datatype: 'json',
        data: "formname="+formname+"&status="+status,
         success: function(json){
            alert( "id is : " + json.forms[0].id);
                                }//success
 });//ajax

答案 1 :(得分:1)

实际上这很简单。

var myJavaScriptVariable = 'world';

$.ajax({
 type: "POST",
url: "http://localhost/FormBuilder/index.php/forms/saveForm/"+user_id+?myFirstGetParamater=hello&mySecondGetParameter='+ myJavaScriptVariable+'",

data: "formname="+formname+"&status="+status,
 success: function(msg){
 // alert( "Data Saved: " + msg);
            }//success
});

答案 2 :(得分:0)

我假设由于ajax请求,表单是 由PHP脚本保存,您希望获取保存的表单的ID。

如果是这样,请将您的php脚本设置为echo保存的表单的ID,如其所示 只输出。然后你可以使用:

 success: function(id{
         // alert( "Data Saved: " + id);
                                }//id is the id
 });//ajax

答案 3 :(得分:0)

即使是帖子请求也会将一些数据返回给客户端。如果您的服务器端脚本返回任何数据,它将被传递到success: function(data){}函数。从那里解析它!

答案 4 :(得分:0)

经过简单测试,但这里的解决方案似乎有效......

表单页面:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="../../scripts/ajax.js"></script>
<script type="text/javascript">
function send_ajax(){
    get = '?get_text=' + document.getElementById("get_text").value;
    get = get +'&get_text2=' + document.getElementById("get_text2").value;
    post = "post_text="+document.getElementById("post_text").value;
    post = post + "&post_text2="+document.getElementById("post_text2").value;
    path = 'prosses.php'; // path to server side prossessing page.
    element = 'result'; // placeholder for the html returned from the server side prossessing page.
    ajax(path,get,post,element);
    }
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>ajax testing page</title>
</head>

<body>
GET1: <input type="text" id="get_text" onkeyup="send_ajax()" /><br />
GET2:<input type="text" id="get_text2" onkeyup="send_ajax()" />

  <br /><br />

<form action="" method="post">
POST1:<input id="post_text" type="text" /><br />
POST2:<input id="post_text2" type="text" /><br />
<input type="button" value="Button" onclick="send_ajax()" /><br />
</form>
<span id="result">Result will appear here</span>
</body>
</html>

ajax脚本:

var xmlhttp;
function ajax(path,get,post,element){
    ajax_suite(path,get,post);

function ajax_suite(path,get,post){
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null){
  alert ("http requests are not supported by your browser");
  return;
  }
  if(get == ""){
    rand = "?sid="+Math.random();
  }else{
    rand = "&sid="+Math.random();
  }
var url=path + get + rand;
xmlhttp.onreadystatechange=stateChanged;
xmlhttp.open("POST", url, true); 
xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Content-length", post.length);
xmlhttp.setRequestHeader("Connection", "close");
xmlhttp.send(post); 
}

function stateChanged(){

if (xmlhttp.readyState==3){
document.getElementById(element).innerHTML="Loading...";
}
if (xmlhttp.readyState==4){
document.getElementById(element).innerHTML=xmlhttp.responseText;
}
}

function GetXmlHttpObject(){
if (window.XMLHttpRequest){
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject){
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}
}

php处理页面:

GET1 = <?php echo $_GET['get_text']; ?><br>
GET2 = <?php echo $_GET['get_text2']; ?><br>
POST1 = <?php echo $_POST['post_text']; ?><br>
POST2 = <?php echo $_POST['post_text2']; ?><br>

我希望这会有所帮助

布莱斯。

答案 5 :(得分:-1)

您不能在同一个AJAX请求中混合POST和GET,因为AJAX请求是HTTP请求,而单个HTTP请求只有一个方法(GET,HEAD,POST,PUT,DELETE,TRACE或CONNECT)虽然我从未见过后两个使用,但PUT和DELETE并不常见。

除此之外,还不清楚“表单ID”是什么意思 - 当POST成功时,您要发布的URL是否返回一些唯一标识符?