$.ajax({
cache: true,
type: "GET",
url: window.contextPath + "/sys/dic/dic",
data: {sort: sort},
dataType: 'json',
async: false
}).always(function () {
}).fail(function (jqXHR, textStatus, errorThrown) {
console.log(jqXHR.responseText);
console.log(jqXHR.status);
console.log(jqXHR.readyState);
console.log(jqXHR.statusText);
console.log(textStatus);
console.log(errorThrown);
}).done(function (result) {

});

相关文章:

  • 2021-11-20
  • 2022-02-07
  • 2022-02-07
  • 2022-02-07
  • 2022-02-07
  • 2021-11-18
  • 2021-12-14
猜你喜欢
  • 2022-02-07
  • 2021-11-20
  • 2022-02-07
  • 2021-10-28
  • 2021-11-20
  • 2021-11-20
相关资源
相似解决方案