CodeIgniter 3、PHP 8 和 jQuery AJAX

CodeIgniter 3, PHP 8 and jQuery AJAX

提问人:Mathurin Abossolo Evina 提问时间:6/13/2023 更新时间:6/13/2023 访问量:216

问:

上午 PHP 8 中的 AJAX 请求在 CodeIgniter 3 上能正常工作吗?

我在 CodeIgniter 3 下安装了一个应用程序,它在 PHP 7.4 下很长一段时间都可以完美运行。我想在另一台运行 PHP 8.1.2 的机器上安装相同的应用程序。在那里,AJAX 请求不再通过。

php jquery ajax codeigniter

评论

1赞 Qadees Javed 6/13/2023
你是在客户端还是服务器端使用AJAX?

答:

0赞 Qadees Javed 6/13/2023 #1

尝试使用标头

     $.ajax({
        url: "your url",
        headers: {'X-Requested-With': 'XMLHttpRequest'}
    });

评论

0赞 Mathurin Abossolo Evina 6/14/2023
对于标头,它也不起作用。