没有调用上传onComplete

时间:2012-04-17 07:13:34

标签: jquery spring-mvc uploadify

我正在使用spring-mvc和jquery uploadify来上传图片,我的uploadify脚本将图像保存在我的服务器上,我的图像被保存但是uploadify正在抛出HTTP错误而且onComplete没有被触发。我确保我的脚本正在返回一些内容。这是我的代码。

 $(document).ready(function() {
             $('#upload').click(function() {
                 $('#uploadify').uploadifyUpload();
                    return false;
                 });
                 $('#uploadify').uploadify({
                    'uploader': 'js/uploadify/uploadify.swf',
                    'script': 'uploadcreate.htm;jsessionid=${sessionId}',
                    'multi': false,
                    'auto' : true,
                    'fileDesc': 'JPG Image Files (*.jpg),JPG Image Files (*.JPG),JPG Image Files (*.JPEG)',
                    'fileExt' : '*.jpg;*.jpeg;*.JPEG;',
                    'cancelImg': 'js/uploadify/cancel.png',
                    onComplete: function (event, queueID, fileObj, response, data) {
                        alert("as");
                        //$("#showimage").html('<img src="' + response + '" height="500" width="500" /><br />http://localhost:8080' + fileObj.filePath);

                         }
                 });
         });

我的控制器代码是:

@RequestMapping(value="/uploadcreate.htm", method = RequestMethod.POST)
    public JSONObject uploadcreate(UploadProperties uploadbean, BindingResult result, HttpServletRequest request, Model model) {
        System.out.println("started uploading");
        if (result.hasErrors()) {
            for (ObjectError error : result.getAllErrors()) {
                System.err.println("Error in uploading: " + error.getCode()
                        + " - " + error.getDefaultMessage());
            }
            return null;
        }
        String relativeWebPath = "/WEB-INF/uploads";
        String absoluteFilePath = request.getServletContext().getRealPath(relativeWebPath);
        String username = request.getUserPrincipal().getName();

        JSONObject filepath = uploadFacade.upload(uploadbean, username, absoluteFilePath);

        model.addAttribute("filePath", filepath);
        return filepath;

    }

1 个答案:

答案 0 :(得分:0)

上面实现的主要问题是使用sessionId,我的Spring安全性在某种程度上创建了不同的会话ID,这就是我的请求未经过身份验证的原因。我从我的spring安全配置文件中删除了安全性,如此

<intercept-url pattern="/uploadcreate.htm" filters="none" />

之后我遇到了一些其他问题,但我通过正确处理会话来绕过这个问题。