以下のPluploadによって返された応答オブジェクトを解析できない理由を、私は一生理解できません。
次のように、ASP.NET MVC コントローラーから JsonResult を返します。
public JsonResult Upload()
{
// code to process the upload
return Json(new { success = true, data = "Some response data" });
}
次のようにビューでそれを読んでいます:
uploader.bind("FileUploaded", function (up, file, response) {
response = $.parseJSON(response);
alert("I managed to parse it!");
if (response.success) {
// do something with the response data
} else {
// tell the user there was an error
}
});
「なんとか解析できました!」というアラートに到達することはありません。