2012-02-04 14 views
0

私はアクティブレコードモデルとJSONの文字列値ではなく、そうここJSON結果は

を行うことができないの両方を返すようにしようとMは私のコントローラ/アクションです

def index 
    @accounts = Account.search(params[:search_login]) 
    respond_to do |format| 
     format.html # index.html.erb 
     format.json { render json: @accounts, :miles => "23"} 
    end 
end 

そして、ここでのAjaxコール

 

    function GetMiles() 
{ 
    $.ajax({url: "/accounts?" + "search_login=" + $('#account_number').val(), 
     dataType: "json", 
     success: function(data) { 
     alert(data.miles) 
     response($.map(data.acc, function(item1) { 
      alert(item.account_number) 
     } 
     }); 
} 

でもないマイルの価値だけでなくすべてのモデルを取得することができますプロパティの値は、

答えて