我通过响应发送给视图的变量是空白的

时间:2018-04-15 14:41:21

标签: json laravel-5 view controller response

我正在通过查询从控制器中的数据库中检索数据,并尝试使用response->将其发送到视图。 json,但是视图控制台看起来是空的{}

控制器

 public function hamleler($mac_id,$turnuva_sporcu_id){

    $notations=array();
    $notations=Notasyon::select('id','beyaz_hamle')- 
   >where('mac_id',$mac_id)->where('turnuva_sporcu_id',$turnuva_sporcu_id)
        ->orderby('id','desc')
        ->first();
        //->pluck('beyaz_hamle');
    return response()->json($notations);
   }

canli.blade

 $.get("{{URL::To('/{turnuva_sporcu_id}/{mac_id}/canli-yayin/hamleler')}}", function(data1) {
     if(data1) {
               console.log(data1);
             }
                else {
                alert('error');
                }

                 });

控制台屏幕中的数据 enter image description here

1 个答案:

答案 0 :(得分:0)

尝试在控制器中打印$ notations值,以检查您是否从模型中获得任何结果。

dd($ notations): 这将打印从 Notasyon 模型中检索到的结果。

同时检查Notasyon的拼写......它可能是符号......我想......