私はクラスを持っているASP.NET MVC 3解析JSONオブジェクトと表示データ
public class ConversionResultModel
{
public string ProcessId { get; set; }
public bool Result { get; set; }
public string Message { get; set; }
}
JSを使用して、クライアント側でそのようなJSONオブジェクトを解析するためにどのようにJSON
public ActionResult UploadFile(IEnumerable<HttpPostedFileBase> clientUpload)
{
string destinationPath = "";
JsonResult result = null;
var fileModel = new ConversionResultModel();
fileModel.ProcessId = "4558-95559-554";
fileModel.Result = true;
fileModel.Message = "test.pdf";
result = Json(new { fileModel }, "text/plain");
return result;
}
を使用して表示するためにそれを送信したり、 jQueryと値を読み取りますか?
私は、私はあなたの場合には、この
{"fileModel":{"ProcessId":"4558-95559-554","Result":true,"Message":null,"SourceFile":null,"ConvertedFileName":"test.pdf","ConvertedFileSize":1233444,"DownloadUrl":"http://localhost:2008/download?path=4558-95559-554","DeleteUrl":"http://localhost:2008/download?path=4558-95559-554"}}
私は$ .parseJSON(e.response)で解析しようとしましたが、動作しません。 – Tomas
どうしたのですか?何か間違いはありましたか? – senfo