ajax没有返回应用程序中的查看页面的响应

时间:2016-03-10 12:51:56

标签: javascript ajax laravel laravel-5 onclick

当我在firefox控制台窗口调试时,我可以看到输出,但它没有出现在我的视图页面上,下面我提到了我的ajax代码和我的控制器,我得到了一个结果但是视图没有显示

的Ajax:

      <script>
$('.click').click(function(evt) {
 evt.preventDefault();
 var link = $(this).attr('id');
$.ajax({
   type: "GET",
   url: 'p_details',
   dataType: "json",

   data: {
      id: link   
 }


});
   //alert(data);
}).done(function(data) { // pass the url back to the client after you    incremented it
$('#property').empty('clear').html(data.html);
});
 </script>

控制器:

    public function index()
            {
         //$filter=Input::get('id');
       //var_dump($term);
        $view=DB::table('property_details')
     ->Where('sale_or_rent', '=', 'rent')
        ->orWhere('sale_or_rent', '=', 'sale')
       ->get();
     //  var_dump($view);
    return view::make('index', array('val'=>$view));
}

    public function getPropertyDetails()
      {
         $filter = Input::get('id');
        $display = DB::table('property_details')
                  ->where('sale_or_rent', 'LIKE', '%' . $filter . '%')
                  ->get();
                  //var_dump($display); 

                 if(count($display)!=0)
                    {    
                      $returnHTML = view('/pages/fliter')->with('val', $display)->render();
                      return response()->json(array('success' => true, 'html'=>$returnHTML));
                    }
                    else
                    {
                    session::flash('status', 'No Records Found!!!');
                    $returnHTML = view('/pages/fliter')->with('val', $display)->render();
                    return response()->json(array('success' => true, 'html'=>$returnHTML));
                    } 
      } 

1 个答案:

答案 0 :(得分:0)

应该

$('#property').empty('clear').html(row.html);

不是

$('#property').empty('clear').html(data.html);

另外.sucess()拼写错误。它应该是.success()