我有一个 zip 文件,它是通过在我的桌面 Flex 4.6 应用程序中的视图上拖放创建的。
这会触发一项服务,该服务将自动上传 zip 文件。
我可以使用以下代码将有关 zip 文件的元数据发送到服务器。
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';
// params['data[File][filename]'] = I am not sure exactly what to use here
// If this is a webpage, I expect to use input type="file" with the name as data[File][filename]
urlRequest.data = params;
addLoaderListeners();
// set it such that data format is in variables
loader.dataFormat = URLLoaderDataFormat.VARIABLES;
loader.load(urlRequest);
我已阅读https://stackoverflow.com/questions/8837619/using-http-post-to-upload-a-file-to-a-website
但是,他们立即从 ByteArray 开始,我根本不知道如何转换我的 zip 文件。
请指教。