Jump to content

Laravel won't submit ajax


makamo66

Recommended Posts

I'm trying to get the user/dashboard page to submit as ajax. My console shows ABOUT TO SEND  SUCCESS!  Done. so that means the jquery post was sent but I keep getting "No ajax" on the user/dashboard page. How do I submit a page as ajax?
 
added to routes.php
Route::post('user/dashboard', array('before' => 'suth', 'uses' => 'UserController@calendar'));
added to UsersController.php
   public function calendar(){
print_r($_POST);
  if (Request::ajax()) {
        return "yeahhhh";
     }
        return "<br />No ajax";
  return View::make('user.dashboard.index');
}
added to main.js
 $.ajax({
    url: 'http://beta.opentemp.local/user/dashboard',
    data: {} + "&_token=" + $("input[name=_token]").val(),
    type: 'POST',
    'beforeSend': function(xhr, settings) {
      console.log('ABOUT TO SEND');
    },
    'success': function(result, status_code, xhr) {
      console.log('SUCCESS!');
    },
    'complete': function(xhr, text_status) {
      console.log('Done.');
    },
    'error': function (XMLHttpRequest, textStatus, errorThrown) {


alert("Error with ajax Function: "+ textStatus+" "+errorThrown); }
  });

 

Link to comment
https://forums.phpfreaks.com/topic/285009-laravel-wont-submit-ajax/
Share on other sites

  • 3 weeks later...
  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.