简体   繁体   English

通过Ajaxrequest.open从Javascript转换为PHP文件

[英]Getting varriable from Javascript to PHP file via Ajaxrequest.open

I have the following javascript function 我有以下javascript函数

function ajax_runs3(value){
    var ajaxRequest;  // The variable that makes Ajax possible!
    try{
        ajaxRequest = new XMLHttpRequest();
    } catch (e){
        // Internet Explorer Browsers
        try{
            ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try{
                ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e){
                // Something went wrong
                alert("Your browser broke!");
                return false;
            }
        }
    }
    ajaxRequest.onreadystatechange = function(){
        if(ajaxRequest.readyState == 4){
            document.myForm.time.value = ajaxRequest.responseText;
        }
    }

    var runs3= value;
    ajaxRequest.open("POST","runs3.php"+ runs3, true);
    ajaxRequest.send(null); 
}

and also the PHP file 还有PHP文件

<?php
$servername = "localhost";
$username = "USER";
$password = "PASS";
$dbname = "labi8575_inventory";
$conn = mysql_connect($servername, $username, $password);
if(! $conn )
{
  die('Could not connect: ' . mysql_error());
}
mysql_select_db('labi8575_inventory');  
$runs3 = $_POST["runs3"];
$sql = mysql_query("UPDATE demo SET runs3 = '$runs3'");
$retval = mysqli_query( $sql, $conn );
?>

The problem is that i cannot pass the var runs3 from javascript funtion to php file. 问题是我无法将var run3从javascript函数传递到php文件。 I tried also according to the following topic ( Using an ajaxRequest.open to send a variable to php ) solutions like ajaxRequest.open("POST", "runs3.php?variable="+runs3) or AjaxRequest.open("POST", "runs3.php?myvar=runs3", true); 我也根据以下主题( 使用ajaxRequest.open将变量发送到php )进行了尝试,例如ajaxRequest.open(“ POST”,“ runs3.php?variable =” + runs3)或AjaxRequest.open(“ POST”) ,“ runs3.php?myvar = runs3”,true); but in my case it doesnt work. 但就我而言,它不起作用。 Do you know what is wrong in my case? 您知道我的问题是什么吗? Thanks for your interest. 谢谢你的关注。

A POST request doesn't use URL for parameters ! POST请求不使用URL作为参数 It is GET method which uses in-url params... 这是使用网址内参数的GET方法...

Solution: 解:

var runs3= value;
ajaxRequest.open("POST","runs3.php", true); //We open the url
ajaxRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); //IMPORTANT!! We add this header to tell to PHP that it is a "form" which sent requesdt
ajaxRequest.send("value=" + encodeURIComponent(runs3)); //Then we send DATA HERE  (encodeURIComponent encodes data to prevents URL-specific characters (for example '&'))

And then you get in PHP the runs3 value in $_POST["value"] 然后在PHP中获得$_POST["value"]的runs3值

This is the "regular" way. 这是“常规”方式。

But if you want a more flexible request format, you can also send data as JSON: 但是,如果您想要更灵活的请求格式,则还可以将数据作为JSON发送:

var runs3 = {"val" : value};
ajaxRequest.open("POST","runs3.php", true); //We open the url
ajaxRequest.setRequestHeader("Content-type", "application/json");
ajaxRequest.send(JSON.stringify(runs3));

And PHP side: (explained here: Reading JSON POST using PHP ): 和PHP方面:(在这里解释: 使用PHP读取JSON POST ):

$request = file_get_contents('php://input'); //raw request data
$object  = json_decode($request, true);      //we convert it to associative array, by JSON

print_r($object); //Should return Array[1] {  "val" => YOUR_VALUE};

Not the "regular" way, but you have better flexibility with the data you send (because you don't send strings, but raw datas: objects / arrays...) 不是“常规”方式,但是您对发送的数据具有更好的灵活性(因为您不发送字符串,而是发送原始数据:对象/数组...)

Try This. 尝试这个。 Your function(ajax_runs3) 您的功能(ajax_runs3)

function ajax_runs3(value){
    var ajaxRequest;  // The variable that makes Ajax possible!
    try{
        ajaxRequest = new XMLHttpRequest();
    } catch (e){
        // Internet Explorer Browsers
        try{
            ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try{
                ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e){
                // Something went wrong
                alert("Your browser broke!");
                return false;
            }
        }
    }
    ajaxRequest.onreadystatechange = function(){
        if(ajaxRequest.readyState == 4){
            document.myForm.time.value = ajaxRequest.responseText;
        }
    }

    var runs3= value;
    //ajaxRequest.open("POST","runs3.php"+ runs3, true);
   // ajaxRequest.send(null); 

    var url = "runs3.php";
    var params = "runs3="+value;
    ajaxRequest.open("POST", url, true);

    //Send the proper header information along with the request
    ajaxRequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
    ajaxRequest.setRequestHeader("Content-length", params.length);
    ajaxRequest.setRequestHeader("Connection", "close");

    ajaxRequest.onreadystatechange = function() {//Call a function when the state changes.
        if(ajaxRequest.readyState == 4 && ajaxRequest.status == 200) {
            alert(ajaxRequest.responseText);
        }
    }
    ajaxRequest.send(params);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM