IE设置dataType脚本时不会触发jQuery Ajax成功

时间:2017-03-14 11:39:13

标签: javascript jquery ajax

$.ajax({
      url: '/comment_rewards/' + comment_reward_id + '/pay.js',
      type: 'POST',
      data: {channel: reward_style, reward_num: reward_num},
      dataType: "script",
      cache: true
    })
    .done(function() {
      console.log("success");
      reward.closeShade()
      reward.infoPrompt("支付成功!", "success")
    })
    .fail(function() {
      console.log("error");
    })
    .always(function() {
      console.log("complete");
    });

将dataType设置为任何其他可用的响应类型正在运行且控制台"成功"但响应js文件不起作用。 在Firefox,Webkit(Safari,Chrome)中,它可以运行。 在IE控制台"错误" 任何想法?

1 个答案:

答案 0 :(得分:1)

IE可能默认情况下不会设置X-Requested-With:XMLHttpRequest标头。通过在Ajax调用中添加通常的头属性来手动设置它。

$.ajax({
  url: '/comment_rewards/' + comment_reward_id + '/pay.js',
  type: 'POST',
  data: {channel: reward_style, reward_num: reward_num},
  headers:{
      X-Requested-With: "XMLHttpRequest"
  }
  dataType: "script",
  cache: true
})

查看$ ajax的在线文档,检查确定如何设置标题。 https://api.jquery.com/jquery.post/