使用Dropzone上传图片及回显示例

一、图片上传所涉及到的问题

1、HTML页面中引入这么一段代码

    <div class="row">

        <div class="col-md-12">

            <form dropzone2  class="dropzone" enctype="multipart/form-data" method="post"></form>

        </div>

    </div>

2、 在指令中发送POST请求

关键代码如下

 var manage = angular.module(‘hubBrowseManageDirectives‘, []);

    manage.directive(‘dropzone2‘, function () {
        return {
            restrict: ‘EA‘,
            controller: [‘$scope‘, ‘$element‘, ‘$attrs‘, ‘$timeout‘, function ($scope, $element, $attrs, $timeout) {
                $element.dropzone({
                    url : "rest/components/"+$scope.component.name+"/"+$scope.component.version+"/images",
                    autoDiscover : false,
                    autoProcessQueue: true,
                    addRemoveLinks: true,
                    addViewLinks: true,
                    acceptedFiles: ".jpg,.png",
                    dictDefaultMessage: "upload head picture",
                    maxFiles : "1",
                    dictMaxFilesExceeded: "Only can upload one picture, repeat upload will be deleted!",
                    init: function () {
                     var mockFile = { name: "Filename",
                                      size: 10000
                                     };
                     this.emit("addedfile", mockFile);
                     mockFile._viewLink.href = "rest/components/"+$scope.component.name+"/"+$scope.component.version +"/"+$scope.component.image;
                     mockFile._viewLink.name = $scope.component.image;
                     this.emit("thumbnail", mockFile, "rest/components/"+$scope.component.name+"/"+$scope.component.version +"/"+$scope.component.image);
                     this.emit("complete", mockFile);

                        $(".dz-view").colorbox({
                               rel:‘dz-view‘,
                               width:"70%",
                               height:"80%"
                        });

                        this.on("error", function (file, message) {
                            alert(message);
                            this.removeFile(file);
                        });
                        this.on("success", function(file,imageInfo) {

                          file._viewLink.href = imageInfo.newfile;
                          file._viewLink.name = imageInfo.newfile;

                           $scope.$apply(function() {
                                $scope.component.image="rest/components/"+$scope.component.name+"/"+$scope.component.version+"/"+imageInfo.newfile;
                           });

                        });
                        this.on("removedfile", function(file) {
                           var removeFileUrl = file._viewLink.name;

                                if($scope.component.image == removeFileUrl){
                                    this.removeFile(file);
                                }

                          });

                    }
                });

            }]
        };
    });

注意上述URL的请求方式,要在Angular模拟请求中放行。格式如下:

var hubMock = angular.module(‘hubMock‘, [‘ngMockE2E‘]);

    hubMock.run([‘$httpBackend‘, ‘$http‘, function ($httpBackend, $http) {

        $httpBackend.whenGET(/\.html/).passThrough();
        $httpBackend.whenGET(/\.json/).passThrough();

        $httpBackend.whenPOST(/rest\/components\/.+\/.+\/images/).passThrough();

    }]);

$httpBackend.whenPOST(/rest\/components\/.+\/.+\/images/).passThrough(); 放行图片上传发送是POST 请求。

3、处理上传图片的请求将其存储在本地

 @POST
    @Path("/{componentName: \\w+}/{version: \\d\\.\\d\\.\\d}/images")
    @Produces(MediaType.APPLICATION_JSON)
    public Response uploadMyComponentImage(@Context HttpServletRequest request, @PathParam("componentName") String componentName,
            @PathParam("version") String version) {
        Map<String, String> infoMap = componentService.uploadMyComponentImage(request, componentName, version);

        return Response.ok(infoMap).build();
    }

4、通过接口及其实现类来处理图片上传的位置

  @Override
    public Map<String, String> uploadMyComponentImage(HttpServletRequest request, String componentName, String version) {

        Map<String, String> infoMap = new HashMap<String, String>();
        String url = null;
        try {
            url = application.getStorageLocation(File.separator + componentName + File.separator + version).getAbsolutePath();
        } catch (IOException e1) {
            e1.printStackTrace();
        }

        DiskFileItemFactory factory = new DiskFileItemFactory();
        ServletFileUpload upload = new ServletFileUpload(factory);

        try {

            Map<String, List<FileItem>> items = upload.parseParameterMap(request);

            for (Entry<String, List<FileItem>> entry : items.entrySet()) {

                String key = entry.getKey();

                Iterator<FileItem> itr = items.get(key).iterator();

                while (itr.hasNext()) {

                    FileItem item = itr.next();
                    String newfileName = UUID.randomUUID().toString() + "-" + item.getName();

                    infoMap.put("newfile", "" + newfileName);

                    File file = new File(url);
                    if (!file.exists()) {
                        file.mkdirs();
                    }
                    file = new File(url + File.separator + "img" + File.separator + newfileName);
                    item.write(file);

                }
            }

        } catch (FileUploadException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }

        return infoMap;
    }

在这里返回的是一个map, key是newfile,value是”” + newfileName,因此在上传成功后就可以取得图片的信息,如下示例 imageInfo.newfile;:

 this.on("success", function(file,imageInfo) {

                          file._viewLink.href = imageInfo.newfile;
                          file._viewLink.name = imageInfo.newfile;

                           $scope.$apply(function() {
                                $scope.component.image="rest/components/"+$scope.component.name+"/"+$scope.component.version+"/"+imageInfo.newfile;
                           });

                        });

二、页面中的图片如何进行回显?

1、现今的网站上图片上的获取方式主要是以Get请求的方式传回图片流到浏览器端,这里同样采用请求主动获取图片的方式。

页面回显时会主动发送请求:

“rest/components/”+scope.component.name+"/"+scope.component.version +”/”+$scope.component.image

真实请求路径是这样的:

localhost:8080/xxxxxx/rest/components/2_component1/1.0.0/0c6684ad-84df-4e0e-8163-9e2d179814e6-Penguins.jpg

2、后台如何接受请求,处理请求呢?

参见以下代码,返回到浏览器的实际上就是一个输出流。

关键代码示例

 /**
     * get pictures OutputStream
     *
     * @param componentName
     * @param version
     * @return
     */
    @GET
    @Path("/{componentName: \\w+}/{version: \\d\\.\\d\\.\\d}/{imagePath: .+}")
    @Produces(MediaType.APPLICATION_OCTET_STREAM)
    public Response findImages(@PathParam("componentName") final String componentName, @PathParam("version") final String version,
            @PathParam("imagePath") final String imagePath) {
        StreamingOutput output = new StreamingOutput() {

            private BufferedInputStream bfis = null;

            public void write(OutputStream output) throws IOException, WebApplicationException {

                try {
                    String filePath = "";
        //判断图片的请求路径是否长路径,这个根据需求而来的
                    if (imagePath.contains("/")) {
                    //取出图片
                        filePath = application.getStorageLocation(File.separator + componentName + File.separator + version) + File.separator + "img"
                                + File.separator + imagePath.split("/")[imagePath.split("/").length - 1];

                    } else {
                      //取出图片
                        filePath = application.getStorageLocation(File.separator + componentName + File.separator + version) + File.separator + "img"
                                + File.separator + imagePath;

                    }

                    bfis = new BufferedInputStream(new FileInputStream(filePath));
                    int read = 0;
                    byte[] bytes = new byte[1024];
                    while ((read = bfis.read(bytes)) != -1) {
                        output.write(bytes, 0, read);
                    }

                } catch (Exception e) {
                    e.printStackTrace();
                } finally {
                    try {
                        if (bfis != null) {
                            bfis.close();
                        }
                        output.flush();
                        output.close();
                    } catch (Exception e2) {
                        e2.printStackTrace();
                    }
                }

            }

        };
        //返回给浏览器
        return Response.ok(output, MediaType.APPLICATION_OCTET_STREAM).build();

    }

3、当点击view时,又会去请求后台返回预览大图图像,这里使用了colorbox插件来进行大图像的预览和轮播显示,感觉很酷的样子。

效果如下所示:

时间: 2024-10-27 08:45:55

使用Dropzone上传图片及回显示例的相关文章

使用Dropzone上传图片及回显演示样例

一.图片上传所涉及到的问题 1.HTML页面中引入这么一段代码 <div class="row"> <div class="col-md-12"> <form dropzone2 class="dropzone" enctype="multipart/form-data" method="post"></form> </div> </div&

wangEditor2版本 上传图片成功 回显失败处理

使用 wangEditor2 来做文本编辑器 主要给业务人员上传图片 后面又业务人员反映 上传图片  图片没有办法显示 第一次判断为是上传出错  导致图片回显失败查看IP 发现有onload 方法,调用后发现 写这个方法 会吧原来的整体覆盖 而我只需要增加失败提示 则在onloadf方法下 添加一下代码 多传一个function 做自己的请求提示 fns.myOnload&&fns.myOnload(resultText) 后来业务人员反映 还是会出现这个问题  主要操作 先上传9张图片

Ajax简单异步上传图片并回显

前台代码 上传图片按钮 <a href="javascript:void(0)" onclick="uploadPhoto()">选择图片</a> 隐藏的文件选择器 <input type="file" id="photoFile" style="display: none;" onchange="upload()"> 图片预览 <img id=

上传图片至fastdfs分布式文件系统并回显

事件,当我们浏览完图片选中一张时,触发onchange事件将图片上传到服务器并回显. 1 <img width="100" height="100" id="allUrl" src="${brand.imgUrl }"/> 2 <input type="hidden" name="imgUrl" id="imgUrl" value="${b

ueditor1.4.3jsp版成功上传图片后却回显不出来与在线管理显示不出图片的解决方案

这是因为路径问题,可以在jsp/config.json这个文件去改路径 通过“imageUrlPrefix”与“imagePathFormat”这两个属性去拼凑路径. “imageUrlPrefix”是前缀的意思 如:我遇到的问题是图片回显地址为: http://localhost:8080/ueditor/jsp/upload/image/...... 而正确的地址是: http://localhost:8080/Spring_3100_Registration_9_bootstrap/ued

使用Jersey构建图片服务器 有回显图片功能

1.前台界面代码 <form id="jvForm" action="add.do" method="post" enctype="multipart/form-data"> <table> <tr> <td width="20%" class="pn-flabel pn-flabel-h"></td> <td width

如何用input标签上传多个图片并回显

本文主要记录如何用input标签和jquery实现多图片的上传和回显,不会涉及后端的交互,大概的效果看图 我们从零来做一个这样的demo 第一步: 我们先完善一下我们的页面,默认的input-file标签非常丑,我们美化一下它,不会的可以百度一下,就是外面套个盒子,设置input的opacity为0,然后外面的盒子设计成我们喜欢的样式即可,我就随便做了一下. 还是放一下源码,只谈效果,不放源码的都是耍流氓 这是body <body> <div class="uploadImgB

图片上传并回显后端篇

图片上传并回显后端篇 我们先看一下效果 继上一篇的图片上传和回显,我们来实战一下图片上传的整个过程,今天我们将打通前后端,我们来真实的了解一下,我们上传的文件,是以什么样的形式上传到服务器,难道也是一张图片?等下我们来揭晓 我们在实战开始前呢,我们先做一下准备工作,比如新建一个java web工程,如果你不懂这个的话,那我建议你先学一下Javaweb,可以去我的公众号找一下这方面的教程.我们就给我们的工程起名为UpImg,我们再给他建一个web包和util包,再把我们以前前端做的图片回显的代码拷

图片上传并回显Ajax异步篇

图片上传并回显Ajax异步篇 图片如何无刷新的上传到服务器呢?继前两篇文章后,我们来实战一下如何无刷新的异步上传图片,我们还是先看一下效果 在实战前呢,我们需要做些准备工作.比如说,了解一下FormData对象 "FormData对象用以将数据编译成键值对,以便用XMLHttpRequest来发送数据.其主要用于发送表单数据,但亦可用于发送带键数据(keyed data),而独立于表单使用.如果表单enctype属性设为multipart/form-data ,则会使用表单的submit()用来