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
}
しかし、それは機能していませんか?