PlayFramework:Ajax + Drag n' Drop + File Upload +控制器中的文件

PlayFramework: Ajax + Drag n#39; Drop + File Upload + File object in controller?(PlayFramework:Ajax + Drag n Drop + File Upload +控制器中的文件对象?)
本文介绍了PlayFramework:Ajax + Drag n' Drop + File Upload +控制器中的文件对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

有谁知道通过 Ajax 上传文件并使用从桌面拖放支持 PlayFramework 将文件上传转换为 File 对象的能力的方法?

Does anyone know of a way to upload a file via Ajax and using drag n' drop from the desktop that supports PlayFramework's ability to convert file uploads to a File object?

我尝试了几种不同的方法,但都没有正常工作.

I've tried several different methods, and nothing works correctly.

推荐答案

这是我的成功尝试:

编辑路由文件并添加

POST    /upload                                 Application.upload

我们的控制器是Application,我将使用它来保持简单.

Our controller is Application, I'll be using it to keep it simple.

编辑您的应用程序控制器类

public static void upload(String qqfile) {


if (request.isNew) {

    FileOutputStream moveTo = null;

    Logger.info("Name of the file %s", qqfile);
    // Another way I used to grab the name of the file
    String filename = request.headers.get("x-file-name").value();

    Logger.info("Absolute on where to send %s", Play.getFile("").getAbsolutePath() + File.separator + "uploads" + File.separator);
    try {

        InputStream data = request.body;


        moveTo = new FileOutputStream(new File(Play.getFile("").getAbsolutePath()) + File.separator + "uploads" + File.separator + filename);
        IOUtils.copy(data, moveTo);

    } catch (Exception ex) {

        // catch file exception
        // catch IO Exception later on
        renderJSON("{success: false}");
    }

}


renderJSON("{success: true}");
} 

在 app/views/Application 文件夹/包中编辑您的 Application.html

#{extends 'main.html'
                
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

ajax请求获取json数据并处理的实例代码 $.ajax({ type: 'GET', url: 'https://localhost:44369/UserInfo/EditUserJson',//请求数据 data: json,//传递数据 //dataType:'json/text',//预计服务器返回的类型 timeout: 3000,//请求超时的时间 //回调函数传参 suc
Rails 3.1 ajax:success handling(Rails 3.1 ajax:成功处理)
Ajax call in rails 3.2.3 with will_paginate gem(使用 will_paginate gem 在 Rails 3.2.3 中调用 Ajax)
Attach or embed node add form with a view(使用视图附加或嵌入节点添加表单)
Drupal: How to submit the webfrom from REST services using AJAX POST(Drupal:如何使用 AJAX POST 从 REST 服务提交 webfrom)
Drupal 7 Field API: how to programmatically send AJAX request specified in #ajax property of form element?(Drupal 7 Field API:如何以编程方式发送表单元素的#ajax属性中指定的AJAX请求?)