7

我在我的应用程序中添加了一个新功能,它允许用户逐步完成一个过程。

Step1 选择下拉值

点击下一步按钮和第 2 步(ajax 请求加载并呈现部分视图,呈现树视图)

点击下一个按钮

第 3 步(通过 XMLHttpRequest 上传文件)

点击下一个按钮

第 4 步(发出另一个 ajax 请求以呈现局部视图)由于某种原因,此请求永远不会命中控制器操作方法。奇怪的是,如果我在步骤 2 中发布到 action 方法,它会成功发布,但我对这一步有不同的操作。

我在 IE 10 开发人员工具中收到以下警告

SEC7127: CORS 请求的重定向被阻止。

XMLHttpRequest:网络错误 0x800c0014,发生重定向问题。SCRIPT7002:XMLHttpRequest:网络错误 0x800c0014,发生重定向问题。

上述错误似乎与此步骤之前的 XMLhhtprequest 有关。我尝试将 XMLhttprequest 设置为 NULL 或尝试在其成功事件时将其处理掉。我在第 4 步中不明白我仍然可以发布到第 2 步的操作,但不能发布不同的操作?

第 3 步

  function handleFiles() {

        var formdata = new FormData(); //FormData object
        var xhr = new XMLHttpRequest();
        xhr.open('POST', fileUploadURL);
        xhr.setRequestHeader('Content-type', 'multipart/form-data');

        //Appending file information in Http headers
        xhr.setRequestHeader('X-File-Name', document.getElementById('myFile').files[0].name);
        xhr.setRequestHeader('X-File-Type', document.getElementById('myFile').files[0].type);
        xhr.setRequestHeader('X-File-Size', document.getElementById('myFile').files[0].size);

        //Sending file in XMLHttpRequest
        xhr.send(document.getElementById('myFile').files[0]);
        xhr.onreadystatechange = function () {
            if (xhr.readyState == 4 && xhr.status == 200) {
                $("input[id=filestoredname]").val(xhr.responseText);
                alert("file saved..");

            }
        }
                return false;
    }

var instrumentSelectionUrl = '@Url.Action("Step2", "ErrorCode")';//step2
var finalTreeViewUrl = '@Url.Action("renderFinalTree", "ErrorCode")';//step3
var fileUploadURL = '@Url.Action("UploadFiles", "ErrorCode")';//step3


$(function () {
    $('form').stepy({
        backLabel: '<<',
        nextLabel: '>>',
        finishButton: false,
        next: function (index) {
            alert(index);
            var v = $("#InsIdLst").chosen().val();
            if (v == null && index == 2) {
                alert("Please select an Instrument");
                return false;
            }
            if (v != null && index == 2) {
                var overlay = $('<div></div>').prependTo('body').attr('id', 'overlay');
                $.ajax({
                    type: 'POST',
                    url: instrumentSelectionUrl,
                    cache: false,
                    datatype: "html",
                    data: $("form").serialize(),
                    success: function (result) {
                        $("#errorCodes").html(result);
                        overlay.remove();
                    }
                });
            }
            if (index == 4) {
                alert("try..");
                $.ajax({
                    type: 'POST',
                    url: finalTreeViewUrl,
                    cache: false,
                    datatype: "html",
                    data: $("form").serialize(),
                    success: function (result) {
                        $("#errorCodesSave").html(result);
                    }
                });
            }

        }
    });
});
4

1 回答 1

3

所以在第 4 步中,如果我使用

$("#errorCodesSave").load(finalTreeViewUrl, { fileName: $("#filestoredname").val(), $("#InsIdLst").chosen().val();: 1 }); 

而不是 $Ajax,它确实发布到预期的控制器操作。这对我来说已经足够好了。

于 2015-08-28T01:10:06.817 回答