How to retrieve JSON result after file upload via actionscript
问题 I know how to upload a file using action script See upload a zip file using HTTP POST via actionscript 3.0 for details. Code replicated here: var urlRequest:URLRequest = new URLRequest(PUBLISH_ZIP_FILE_URL); // set to method=POST urlRequest.method = URLRequestMethod.POST; var params:URLVariables = new URLVariables(); params['data[File][title]'] = 'Title1'; params['data[File][description]'] = 'desc'; // this is where we include those non file params and data urlRequest.data = params; // now we