-1
我寫了下面的代碼,我期待一個JSON對象,但總是返回一個字符串與文件的名稱。罰款上傳resposeJSON
var app=$('#failed-fine-uploader').fineUploader({
request: {
endpoint: 'media/upload.php'
}
}).on('complete', function (id, name,responseJSON) {
alert(responseJSON.success);
alert(responseJSON);
});
responseJSON.success未定義,responseJSON是一個字符串。
這是upload.php的響應:
{"success":"true","id":54,"type":"image\/jpeg","size":22568,"ext":"JPG","uploadName":"100-0027_IMG-645.JPG"}
我想讀取JSON的值等的尺寸和類型。
「restitutisce」是什麼?猜猜「返回」 – djot
是的,抱歉的錯誤 – Andrew