猿问

为什么Ajax脚本不在IIS 7.5 Win 2008 R2服务器上运行?

为什么Ajax脚本不在IIS 7.5 Win 2008 R2服务器上运行?

我有一个Web应用程序在我的开发服务器上的VS 2013上运行良好,但是一旦我在IIS 7.5 2008 R2服务器上发布了它,位于我的自定义脚本文件中的Ajax脚本就不再工作了,尽管其他不调用Ajax的JQuery脚本确实正常工作。为了让Ajax在服务器上工作,还有什么需要做的吗?我读过一些有关的帖子,但还没有找到答案。我在IIS和Ajax方面的经验有限。

/最新情况:

我已经知道Ajax脚本是可行的,问题最有可能出现在下面的行中:

“url:‘/home/GetRates’,/URL用于请求”

使用调试器,我发现在远程服务器中没有调用GetRates()函数,尽管它位于本地(VS 2013)开发服务器中。唯一不同的是,我看到的是道路,但不知道如何修复它。下面是Ajax脚本:

// Retrieve rates and update partial view$(function () {
    $('#reservSearch').submit(function () {
        if ($(this).valid()) {
            $("#theModal").modal("show");              // Display the in progress.....
            $.ajax({
                url: '/Home/GetRates',                 // URL for the request 
                data: $("#reservSearch").serialize(),  // the data to send (will be converted to a query string)
                type: "POST",                          // whether this is a POST or GET request  
                dataType: 'html',                      // the type of data we expect back   
                success: function (data) {   // code to run if the request succeeds; The response is passed to the function
                    $("#theModal").modal("hide");      // Close the in progress modal.....
                    $('#ratesView').html(data);        // Fill div with results
                },
                error: function (xhr, status) {        
                // code to run if the request fails; the raw request and status codes are passed to the function
                    $("#theModal").modal("hide");      // Close the in progress modal.....
                    alert('Error: Retrieving parking rates' + "</br>" + xhr.error);
                }
            });
        }//        // it is important to return false in order to cancel the default submission of the form and perform the AJAX call
        return false;
    });});


暮色呼如
浏览 785回答 2
2回答

天涯尽头无女友

如何调试Ajax调用完整的答案分散在对OP问题的评论中,但我认为这个问题最有帮助:转到进行ajax调用的网页在铬压机F12中转到“网络”选项卡通过提交表单#ReservSearch激活Ajax调用在“网络”选项卡中,查找对/home/GetRates的调用点击它检查预览和响应选项卡,查看服务器的输出它是否显示您的Ajax调用正在侦听的预期HTML数据?

SMILET

对于任何使用Firefox的人,您都可以在Firefox上做同样的事情,在Firefox中也可以按F12键
随时随地看视频慕课网APP
我要回答