我正在使用 jquery 的 filedrop 插件将图像上传到我网站上的 imgur。PHP 脚本返回{"status":"Imgur code: cZ8gH"}
我想将此作为警报返回,但我不知道该怎么做?
我目前有这个
uploadFinished:function(i,file,response){
$.data(file).addClass('done');
var jsonobj = $.parseJSON(response);
alert(jsonobj.status);
// response is the JSON object that post_file.php returns
}
但它不工作?