Rails 3.1アプリには、いくつかのオブジェクトによって作成された配列があります。
[#<Hardware id: 10, brand_id: 5, model: "B4200", description: "Stampante OKI B4200", typology_id: 3, sub_typology_id: 10, created_at: nil, updated_at: nil>, #<Hardware id: 19, brand_id: 9, model: "JetLab", description: "JetLab - 600 ", typology_id: 5, sub_typology_id: nil, created_at: nil, updated_at: nil>]
この配列から1つのオブジェクトを削除したいと思います。Railsコンソールを使用して、次のようなことを試みました(最初のオブジェクトを削除してみてください)。
array.pop=#<Hardware id: 10, brand_id: 5, model: "B4200", description: "Stampante OKI B4200", typology_id: 3, sub_typology_id: 10, created_at: nil, updated_at: nil>
しかし、それは機能しません。これどうやってするの?
更新:私の目標は、配列の最後の要素をポップすることではなく、mysql検索クエリを使用して見つける必要があるジェネリックオブジェクト(配列内のすべての場所)です。