Laravel won't submit ajax
Posted: Tue Dec 31, 2013 9:56 am
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
added to UsersController.php
added to main.js
added to routes.php
Code: Select all
Route::post('user/dashboard', array('before' => 'suth', 'uses' => 'UserController@calendar'));Code: Select all
public function calendar(){
print_r($_POST);
if (Request::ajax()) {
return "yeahhhh";
}
return "<br />No ajax";
return View::make('user.dashboard.index');
}
Code: Select all
$.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); }
});