📌  相关文章
📜  json url 数据未显示在控制台中使用 jquery - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:53.039000             🧑  作者: Mango

代码示例1
$.ajax({
  type: "POST",  // add type
  url: 'file.php',
  dataType: 'json', // change dataType to 'json' if its something else
  success: function(response) {
    console.log(response);
  }
});

I hope it will help you.
Namaste _/\_