1

私のウェブサイトに jquery-fileupload をロードすると、次のエラーが発生します。

http://www.testsite.net/uploadfile/%5Bobject%20Object%5D?_=1354103435936

エラーは (ページ応答)

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>404 Not Found</title>
    </head><body>

<h1>Not Found</h1>    
<p>The requested URL was not found on this server.</p>

</body></html>

main.js を読むと、この呼び出しでエラーが見つかりました:

    // Load existing files:
    $.ajax({
        // Uncomment the following to send cross-domain cookies:
        //xhrFields: {withCredentials: true},
        url: $('#fileupload').fileupload('option', 'url'),
        dataType: 'json',
        context: $('#fileupload')[0]
    }).done(function (result) {
        if (result && result.length) {
            $(this).fileupload('option', 'done')
                .call(this, null, {result: result});
        }
    });
4

1 に答える 1