с помощью webpy - PullRequest
       14

с помощью webpy

0 голосов
/ 16 апреля 2010

Я хотел бы загрузить файл с plupload с помощью среды выполнения HTML5.

Это мой html / js код:

jQuery(function(){
    jQuery("#uploader").pluploadQueue({
        // General settings
        runtimes : 'html5',
        name : 'file',
        url : 'http://server.name/addContent',
        max_file_size :  '${maxSize}$_("GB")',
    });


    jQuery('#form_upload_file').submit(function(e) {
        var uploader = jQuery('#uploader').pluploadQueue();
        // Validate number of uploaded files
        if (uploader.total.uploaded == 0) {
            // Files in queue upload them first
            if (uploader.files.length > 0) {
                // When all files are uploaded submit form
                uploader.bind('UploadProgress', function() {
                if (uploader.total.uploaded == uploader.files.length)
                    jQuery('#form_upload_file').submit();
                });
                uploader.start();
            } else
                alert('You must at least upload one file.');

            e.preventDefault();
        }
    });


});

<form id="form_upload_file" action="#" method="POST">
        <div id="uploader"></div>
        <input type="hidden" name="token" value="token" />
        <input type="hidden" name="idUser" value="$idUser" />
    </form>

Итак, когда я нажимаю кнопку загрузки (метод submit () не вызывается), он выполняет HTTP-запрос OPTIONS на мой сервер. так что я не знаю, что я должен сделать, чтобы сохранить файл?

это мой webpy код:

def OPTIONS(self):
        web.header('Content-type', 'text/plain: charset=utf-8')
        web.header('Cache-Control', 'no-store, no-cache, must-revalidate')
        web.header('Cache-Control', 'post-check=0, pre-check=0', False)
        web.header('Pragma', 'no-cache')


    def POST(self):
        input = web.input(_unicode=False, file={})#on récupère les input
        self.copy(input.file.file)
        etc.

Есть идеи, что не так?

1 Ответ

0 голосов
/ 26 апреля 2010

Вы смотрели кулинарную книгу webpy по этой проблеме?

http://webpy.org/cookbook/fileupload

Этот рецепт, кажется, выполняет то, что вы хотите сделать.

...