dongzha5934 2018-08-28 12:17
浏览 84
已采纳

Laravel ajax没有返回数据

I am having trouble retrieving data from Controller using ajax this is my code

the trigger

<select id="course_select" name="course_select" class="form-control" required autofocus value="{{old('course_select')}}" onchange="getCourse()">

The my ajax section

function getCourse(){
  var id=document.getElementById('course_select').value;
  alert(id);
  $.ajax({
    type:'get',
    url:'getCourseLessons/'+id,
    datatype:'json',
    success:function(data){
      console.log(data);
      alert(data.lessons);
    }
  });
}

and my controller

public function getCourseLessons($id){
      $lessons = DB::table('lessons')->select('id','Lesson_name')->where('course_id','=',$id)->get();
      return response()->json(array('lessons'=>$lessons));
}

Results console.log(data)

console.log(data)
ReferenceError: data is not defined[Learn More]

My Routes.

Route::get('/getcourselessons/{id}','AdminController@getCourseLessons');

I will appreciate all the help i can get.

  • 写回答

4条回答 默认 最新

  • douzhaxian1267 2018-08-28 12:59
    关注

    First of all please check the route you used in Route/Web.php it should be like this

    Route::get('getCourseLessons/{id}','YourController@getCourseLessons');
    

    Check the controller.

    public function getCourseLessons($id){
      $lessons = \DB::table('lessons')->select('id','Lesson_name')->where('course_id',$id)->get();
      return response()->json(array('lessons'=>$lessons));
    }
    

    As per your ajax code is ook but you can try this also.

    function getCourse(){
      var id=$('#course_select').val();
      alert(id);
         $.ajax({
           type:'get',
           url:'{{url('getCourseLessons')}}/'+id,
           datatype:'json',
           success:function(data){
               console.log(data);
               alert(data.lessons);
            }
         });
     }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同