1

ファイルをアップロードした後、ディスクに保存する前に、いくつかの検証を行っています。

何かが失敗した場合、カスタム エラー メッセージをユーザーに表示したいと考えています。ここで似たようなものを見つけましたUploadify: HTTP 応答からのエラー メッセージを表示します

MVC 3 でこれを行う方法は?

4

2 に答える 2

2

トニー、

私が現在取り組んでいる ab mvc3 アプリから直接取得したもの:

<script type="text/javascript">
    function initupLoadify() {
        $("#fileInput").uploadify({
            uploader: '@Url.Content("~/scripts/swf/uploadify.swf")',
            script: '@Url.Action("Upload", "Home")',
            cancelImg: '@Url.Content("~/Content/cancel.png")',
            auto: true,
            sizeLimit: 5500000,
            fileDataName: 'fileData',
            //scriptData: { 'propertyId': $("#PropertyID").val() },
            buttonText: 'Add Schedule',
            wmode: 'transparent',
            //buttonImg: '@Url.Content("~/Content/button.png")', // make nice gradient image for button
            onComplete: function (event, queueId, fileObj, response) {
                $("#msg").html(response);
                // do something
                setTimeout(2000, window.location = '@Url.Action("Index")' + '?id=' + response);
                return true;
            },
            onCancel: function (evt, queueId, fileObj, data) {
                $("#msg").html("<br />Operation cancelled");
                return true;
            },
            onOpen: function (evt, queueId, fileObj) {
                $("#msg").html("<br />Upload in progress");
                return true;
            },
            onError: function (event, queueId, fileObj, errorObj) {
                $("#msg").html(fileObj.name + " was not uploaded ");
                if (errorObj.status == 404)
                    $("#msg").html("Could not find upload script. Use a path relative to: " + "<?= getcwd() ?>");
                else if (errorObj.type === "HTTP")
                    $("#msg").html("error " + errorObj.type + ": " + errorObj.status);
                else if (errorObj.type === "File Size")
                    $("#msg").html(fileObj.name + " " + errorObj.type + " Limit: " + errorObj.info / 1000 + " KB");
                else
                    $("#msg").html("error " + errorObj.type + ": " + errorObj.text);
            }
        });
    };
</script>

お役に立てれば

于 2012-07-20T10:57:25.720 に答える
0

これは MVC 3 のです。

バージョン 3.0 以降を使用している場合は、 onCompleteの代わりに onUploadComplete を使用します (これらのパラメーターが異なることに注意してください)。

于 2012-11-15T11:44:10.700 に答える