Welcome Guest, Not a member yet? Register   Sign In
Codeigniter 4 ajax post results in 404 error
#1

I am trying to handle a form submit using the JQuery ajax function on localhost xampp. However, the following always results in a 404 page not found error:


Code:
$(document).on("click", ".iconsTop .iconst", function (e) {
    var idfilter = $(this).attr("id");;
    $.ajax({
      type: "POST",
      dataType: "text",
      url: "filter",
      data: { filter_id:idfilter },
      cache: false,
      success: function (data) {
        $('.maincontact').empty().append(data);
      }
    });
  });

Controller:


PHP Code:
class App_home extends BaseController
{
    public function filter()
    {
        echo 'ok';
    }


Router


PHP Code:
use CodeIgniter\Router\RouteCollection;
$routes->setAutoRoute(true);
$routes->get('filter''App_home::filter'); 

After submitting the form, I always get the following error in Google Chrome's page inspector:

Quote:jquery-3.7.1.min.js:2 POST http://localhost/app/public/filter 404 (Not Found)



Quote:404 Controller or its method is not found: Filter::index
Reply


Messages In This Thread
Codeigniter 4 ajax post results in 404 error - by Binboy - 05-21-2024, 06:57 AM



Theme © iAndrew 2016 - Forum software by © MyBB