2

デスクトップFlex4.6アプリのビューでドラッグアンドドロップを使用して作成されたzipファイルがあります。

これにより、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ファイルを変換する方法がまったくわかりません。

お知らせ下さい。

4

1 に答える 1

4

恥ずかしいですが、質問を投稿してから42分後に答えを見つけました。

ここで起こっているゴム製のアヒルの問題解決の少し。

http://www.codinghorror.com/blog/2012/03/rubber-duck-problem-solving.html

簡単な答え: File クラスを使用し、具体的にはFileReferenceクラスから拡張されたメソッドuploadを使用します。

長い答え:

        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 upload the file
        // this is how we set the form field expected for the file upload
        file.upload(urlRequest, "data[File][filename]");
于 2012-05-27T09:07:56.743 に答える