Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery ajax() POST to Slim PHP framework

Using jquery mobile+phonegap, trying to POST to a Slim application, I have this code:

$( document ).on( "vclick", "#test_form", function() {
            $.ajax({
                type: "POST",
                url: "http://mydomain.com/slim/",
                crossDomain: true,
                beforeSend: function() {
                    $.mobile.loading('show')
                },
                complete: function() {
                    $.mobile.loading('hide')
                },
                data: {namec:$("#namec").val()},
                dataType: 'json',
                success: function(response) {
                    //console.error(JSON.stringify(response));
                    alert(response);
                },
                error: function() {
                    //console.error("error");
                    alert('Not working!');
                }
            });
});

I have tested this with other non Slim PHP pages and everything works fine, I get the ajax error with Slim though.

My Slim app:

<?php
require 'Slim/Slim.php';

\Slim\Slim::registerAutoloader();

$app = new \Slim\Slim();

$app->post('/', function () {
    echo json_encode($_POST("namec"));
});

$app->run();

Just started using Slim, so not sure what I could be doing wrong.

like image 304
Jorg Ancrath Avatar asked Feb 16 '23 07:02

Jorg Ancrath


1 Answers

Have you tried:

$app->post('/', function() use ($app) {
       // ...
       $req = $app->request();
       echo json_encode($req->post('namec'));
       //...
}

Also this page should help

like image 132
rscnt Avatar answered Feb 18 '23 20:02

rscnt