1

我的 AJAX 有问题。我的 javascript 文件无法将数据发送到 PHP 文件。我的 javascript 文件:

function updateTile(tile_no){

    var ajaxRequest;

    var color = document.getElementById("color_"+tile_no).value;
    //alert($color);
    var img_path = document.getElementById("url_"+tile_no).value;
    //alert(url);
    var title = document.getElementById("title_"+tile_no).value;

    try{

    ajaxRequest = new XMLHttpRequest();
    } catch (e){

        try{
            ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try{
                ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e){

                alert("Browser Error !");
                return false;
            }
        }
    }

    ajaxRequest.onreadystatechange = function(){
        if(ajaxRequest.readyState == 4){


            document.getElementById("box_tile"+tile_no).innerHTML = ajaxRequest.responseText;
        }
        else
        {
            document.getElementById("box_tile"+tile_no).innerHTML = '<img src=ajax-loader.gif /> <br /> ';
        }
    }

    var url = "update.php?color="+color+"&url="+img_path+"&img_path="+title;

    alert(url);

    ajaxRequest.open("GET", url, true);
    ajaxRequest.send(null); 
}

alert(url);节目update.php?color=#444444&url=http://somesite/image.jpg&img_path=Tile 1。_ 我的update.php文件:

<?php


    $color_code = $_GET['color'];

    $img_url = $_GET['img_path'];

    $title = $_GET['title'];

    echo 'Color Code :'.$color_code;
    echo '<br />Image Path :'.$img_url;
    echo '<br />Title :'.$title;

/*
echo '<div style="background:'.$color_code.';width:100%;height:100%;vertical-align:bottom;color:#f8f8f8;font-family:Trebuchet MS;"><img src="'.$img_url.'" /><span>'.$title.'</span></div>';
*/  
?>

但是 PHP 的响应显示空结果!

Color Code :
Image Path :
Title :
4

3 回答 3

1

您应该对图像路径进行编码,因为它是一个 url,并且它包含一个颜色#(使用encodeURIComponent

您的查询字符串似乎都搞砸了,您通过了,color但期望 ,url并且img_pathcolorimg_pathtitle

var url = "update.php?color="+encodeURIComponent(color)+
          "&img_path="+encodeURIComponent(img_path)+"&title="+title;
于 2012-12-17T05:09:26.437 回答
1

我很确定你的颜色变量中的哈希符号正在把它扔掉。

忘记 AJAX,直接用上面的 get 变量访问你的 update.php 并执行 print_r($_GET),你会看到没有任何东西被传递到 $_GET 变量中。

摆脱哈希,你是金子

也就是说,发送不带哈希(#)的十六进制颜色代码

update.php?color=444444 而不是 update.php?color=#444444

于 2012-12-17T05:10:20.070 回答
0

试试 post 方法,因为你可能知道 url 对传递字符有一些限制,而 post 可以发送你想要的尽可能多的数据。

还有一件事尝试使用$_REQUEST而不是$_GET看到任何一个都行。

于 2012-12-17T05:11:20.630 回答