解码php中的数据URL

时间:2014-03-20 09:31:20

标签: javascript php ajax

我需要解码PHP中的数据网址。此数据网址是通过ajax获取的。 我使用文件阅读器来获取图像的编码数据URL。此数据URL通过ajax传递给PHP

$.ajax({
    url: app,
    async: false,
    type:"POST",
    data : "file="+strGlobalImageData,
    dataType: "jsonp",
    contentType: 'application/x-www-form-urlencoded',
    processData:false,
    jsonp: "jsoncallback",
    success: function(html){
        alert("Thank you. We will be in touch with you");
    },
    error: function(){
        alert("Thank you. We will be in touch with you");
    }
});

我将如何做到这一点?

1 个答案:

答案 0 :(得分:0)

$image =$_POST['file'] ;

这是你要找的东西吗?让我知道