jQuery ajax() POST to Slim PHP framework

前端 未结 2 472
青春惊慌失措
青春惊慌失措 2021-02-10 20:21

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

$( document ).on( \"vclick\", \"#test_form\", function() {
            $.aj         


        
2条回答
  •  北海茫月
    2021-02-10 20:59

    As per slim v3 you can access the request object with $request->getParams()

    $app->get('/', function (Request $request, Response $response){
       $data = $request->getParams()
       echo json_encode($data['namec']);
    }
    

    see documentation here https://www.slimframework.com/docs/v3/objects/request.html#route-object

提交回复
热议问题