2016-09-20 211 views
1

我是Javascript的新手。我想在我的表單中做一個ajax更新。一切正常。更新完成後,數據庫中的值會更新。發生問題的地方是當我嘗試在視圖中更新它時。這裏是我的控制器從laravel控制器返回JSON響應

public function updatePost(Request $request) 
{ 

    $post = $request->all(); 
    $val = \Validator::make($request->all(), [ 

      'client_id' => 'required', 
      'client_name' => 'required', 
      'client_business' => 'required', 
      'client_ref' => 'required', 
      'gmail_mail' => 'required', 
      'gmail_pass' => 'required', 
      'client_dob' => 'required', 
      'client_addr' => 'required', 
      'client_no1' => 'required', 
      'client_ref' => 'required', 
      'domain_name' => 'required', 
      'domain_p_date' => 'required', 
      'domain_reg' => 'required', 
      'domain_ex_date' => 'required', 
      'domain_acc_email' => 'required', 
      'domain_acc_pass' => 'required', 
      'domain_id' => 'required', 

     ]); 

      if ($val->fails()) { 

      return redirect()->back()->withErrors($val->errors()); 
     } 


      else { 

       $data = array(

       'client_id' => $post['client_id'], 
       'client_name' => $post['client_name'], 
       'client_business' => $post['client_business'], 
       'client_ref' => $post['client_ref'], 
       'gmail_mail' => $post['gmail_mail'], 
       'gmail_pass'=> $post['gmail_pass'], 
       'client_dob'=> $post['client_dob'], 
       'client_addr'=> $post['client_addr'], 
       'client_no1'=> $post['client_no1'], 

       'domain_name' => $post['domain_name'], 
       'domain_p_date' => $post['domain_p_date'], 

       'domain_reg' => $post['domain_reg'], 
       'domain_ex_date' => $post['domain_ex_date'], 
       'domain_acc_email' => $post['domain_acc_email'], 
       'domain_acc_pass' => $post['domain_acc_pass'], 
       'domain_id' => $post['domain_id'], 

       ); 

      //var_dump($data); 

      $update_data = domain_details::where('domain_id', $post['domain_id']) 
      ->update($data); 

       if ($update_data) { 

        $new_data = domain_details::where('domain_id',$post['domain_id'])->get(); 

        return response()->json(['client_id'=> 'johncena'],200); 
       } 
       else 
       { 

        return redirect()->back()->withErrors($val->errors()); 
       } 



     } 

這是我從窗體和更新收到的數據。數據庫上的更新工作正常。這就是問題的發生

if ($update_data) { 

$new_data = domain_details::where('domain_id',$post['domain_id'])->get(); 

return response()->json(['client_id'=> $new_data->client_id],200); 

JSON([ '的client_id'=> $ new_data-> CLIENT_ID],200);如果我只傳遞一個字符串,就像j son(['client_id'=>'John Doe'],200);

另一個問題是當我看到控制檯。如果我嘗試更新表單而不更改任何內容,則會引發500內部服務器錯誤。這是我處理控制器響應的Javascript代碼。有時字符串被改爲John Doe,大多數時候我得到500個內部服務器錯誤。

$('#update-modal').on('click',function(){ 

$.ajax({ 

    type : "get", 
    url : updateURL, 
    data : { client_id : $('#client_id').val(), 
      client_name : $('#client_name').val(), 
      client_business : $('#client_business').val(), 
      client_ref : $('#client_ref').val(), 
      gmail_mail : $('#gmail_mail').val(), 
      gmail_pass : $('#gmail_pass').val(), 
      client_dob : $('#client_dob').val(), 
      client_addr : $('#client_addr').val(), 
      client_no1 : $('#client_no1').val(), 

      domain_name : $('#domain_name').val(), 
      domain_p_date : $('#domain_p_date').val(), 
      domain_reg : $('#domain_reg').val(), 
      domain_ex_date : $('#domain_ex_date').val(), 
      domain_acc_email : $('#domain_acc_email').val(), 
      domain_acc_pass : $('#domain_acc_pass').val(), 
      domain_id : domain_id, 
      _token : token 
     } 

}) 
.done(function(msg){ 
    $(client_id_element).text(msg['client_id']); 



}); 
}); 

我知道我錯過了一些東西。我不知道它是什麼。在此先感謝

回答

2

那麼,我認爲,雄辯get()返回一個集合,而不是某個對象。看起來你只想返回一個具有唯一性的對象domain_id。嘗試使用

$new_data = domain_details::where('domain_id',$post['domain_id'])->first(); 

改爲。

+0

它的工作就像一個魅力,我以爲我用JSON數據犯了一些錯誤。和語法 –

+0

請記住,當使用get()時,訪問查詢結果的正確方法是使用循環遍歷整個集合並使用每個對象或使用像'$ new_data [0] - > client_id'這樣的索引符號這不好。如果你確定你試圖從你的數據庫中獲得的對象具有獨特的屬性,比如'id',你可以簡單地使用'first()'來獲得一個項目。我很高興它工作:) – Khallister