我需要解码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");
}
});
我将如何做到这一点?
答案 0 :(得分:0)
$image =$_POST['file'] ;
这是你要找的东西吗?让我知道