я хочу перенаправить другую страницу после успеха, код работает нормально, но я не могу получить данные, которые я передал
это мой jquery
$.ajax({
type:'GET',
url:link,
data:data,
success:function(response){
alert(response);
if(response === 'true'){
$('.message').html('No table found for the specified number of guests.');
}
else if(response === 'false'){
$('.message').html('The Restaurant is full on this date and time.');
}
else{
window.location.href = link;
}
}
});
});
это мой контроллер
public function myReservation(){
$location= $this->input->get('location');
$guest= $this->input->get('guest');
$date= $this->input->get('date');
$time= $this->input->get('time');
$result =$this->reservation_model->getTables($guest);
$query = $this->reservation_model->getReservations($location,$guest,$date,$time);
if($result){
echo 'true';
}
else if($query){
echo 'false';
}else{
$queryy['getData'] = $this->input->get();
$this->load->view('my_reservation',$queryy);
}
}
не отображается никаких ошибок при переходе на страницу перенаправления без получения данных