in Education by
I'm trying to make a post request via jquery but It seems to be something wrong. Route: Route::post('fblogin','UserController@fblogin')->name('fblogin'); Jquery: $.post( "{{route('fblogin')}}", { 'response': response, '_token':'{{ csrf_token() }}' }, function( data ) { alert( "Data Loaded: " + data ); }); Controller: public function fblogin(Reqeust $request) { var_dump($request->response); } JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
I you are in a js file you cannot use blade's mustache syntax {{ }}. But if you want you can set the 'X-CSRF-TOKEN' header globaly to jQuery let token = document.head.querySelector('meta[name="csrf-token"]') jQuery.ajaxSetup({ headers : { 'X-CSRF-TOKEN' : token.content } }); $.post(window.location.origin + '/fblogin', { 'response': response, '_token': token.content }, function( data ) { alert( "Data Loaded: " + data ); }); And if you want to generate your route dynamically there are several way to do that, among which this package

Related questions

0 votes
    I'm trying to make a post request via jquery but It seems to be something wrong. Route: Route:: ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 17, 2022 in Education by JackTerrance
0 votes
    Why do we use Route in laravel?...
asked Sep 28, 2021 in Technology by JackTerrance
0 votes
    When I do this: std::vector hello; Everything works great. However, when I make it a vector of ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I am trying to create authentication using Laravel Passport, I have configured everything the right way as ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
0 votes
    How to turn off CRSF protection for specific route in Laravel?...
asked Sep 30, 2021 in Technology by JackTerrance
0 votes
    What is a Route in laravel?...
asked Sep 28, 2021 in Technology by JackTerrance
0 votes
    I tried to install vpython from the terminal with the command 'pip install vpython', but it throws me ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 7, 2022 in Education by JackTerrance
0 votes
    I tried to install vpython from the terminal with the command 'pip install vpython', but it throws me ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 7, 2022 in Education by JackTerrance
0 votes
    after installing composer I tried to install larvel but it gives ErrorException .please help.... data from ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 30, 2022 in Education by JackTerrance
0 votes
    after installing composer I tried to install larvel but it gives ErrorException .please help.... data from ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 23, 2022 in Education by JackTerrance
0 votes
    Course Results (${courseResponseList.getCourses().size()}) Want to show above div. jquery script. jQuery. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 6, 2022 in Education by JackTerrance
0 votes
    Course Results (${courseResponseList.getCourses().size()}) Want to show above div. jquery script. jQuery. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    I've following two path path1- test/hello/hello.php path2- test/hello1/hello1.php //notice the one ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 19, 2022 in Education by JackTerrance
0 votes
    I've following two path path1- test/hello/hello.php path2- test/hello1/hello1.php //notice the one ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 17, 2022 in Education by JackTerrance
0 votes
    The Cookies Preferences box that always appears in the bottom right hand corner of the dataplatform.ibm.com ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 23, 2022 in Education by JackTerrance
...