为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

暮色呼如 2019-06-25 10:58:19
为什么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;     });});
查看完整描述

2 回答

?
天涯尽头无女友

TA贡献1831条经验 获得超9个赞

如何调试Ajax调用

完整的答案分散在对OP问题的评论中,但我认为这个问题最有帮助:

  1. 转到进行ajax调用的网页
  2. 在铬压机F12中
  3. 转到“网络”选项卡
  4. 通过提交表单#ReservSearch激活Ajax调用
  5. 在“网络”选项卡中,查找对/home/GetRates的调用
  6. 点击它
  7. 检查预览和响应选项卡,查看服务器的输出
  8. 它是否显示您的Ajax调用正在侦听的预期HTML数据?


查看完整回答
反对 回复 2019-06-25
?
SMILET

TA贡献1796条经验 获得超4个赞

对于任何使用Firefox的人,您都可以在Firefox上做同样的事情,在Firefox中也可以按F12键

查看完整回答
反对 回复 2019-06-25
  • 2 回答
  • 0 关注
  • 784 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信