我正在使用here中的ajaxupload.js,并且可以正常执行上传工作。但是我在响应中得到了<pre style="word-wrap: break-word; white-space: pre-wrap;">{"id":"006","path":"006.png"}</pre>

我认为响应应该只是{"id":"006","path":"006.png"},但是由于某些原因,它被包裹在<pre>以及Uncaught SyntaxError: Unexpected token <周围。

我正在使用Spring MVC 3,Tomcat。我正在使用java.io.Writer将响应写为writer.write(json.toString());

有人可以帮助我了解此错误以及如何解决吗?

谢谢。

更新:

码:

<form id="app-form" class="cols" action="#" method="POST">
    <fieldset class="w50">
        <!--  set of form fields -->
    </fieldset>
    <fieldset class="w50">
        <button id="uploadButton" class="csbutton-grey" >Upload</button>
        <ul id="locationImages"></ul>
    </fieldset>
<div style="float: left;">
    <button type="submit" class="cool-button">Submit</button>
</div>
</form>


$(document).ready(function(){
    var button = $('#uploadButton'), interval;

    new AjaxUpload(button, {
        action: 'uploadImage',
        name: 'qqfile',
        responseType: "json",
        onSubmit : function(file, ext){
            this.disable();
            console.log("file - " + file);
            console.log("ext - " + ext);
            if (! (ext && /^(jpg|png|jpeg|gif)$/.test(ext))){
                alert('Error: invalid file extension');
                return false;
            }
            else {
                $.ajax({
                    type:"GET",
                    url:"file",
                    data:'file='+file,
                    success:function(data, textStatus, jqXHR){
                        console.log(jqXHR.status);
                        console.log(data);
                    },
                    error:function(jqXHR, textStatus, errorThrown) {
                        console.log(jqXHR.status);
                    },
                });
            }
        },
        onComplete: function(file, response){
            this.enable();
            console.log("file - " + file);
            console.log("response.id - " + response.id + ", response.path - " + response.path);
            $('<li></li>').appendTo('#locationImages').text(file);
        }
    });
});

最佳答案

您是否已在AjaxUpload中将responseType属性设置为json

09-28 03:52