Laravel 5.2でフィルターを使用すると、問題が発生しました。フィルター処理後、「0」、「1」、「2」などの予期しないキーがありました... ?
フィルター前:
[
{
"id": 1,
"user_id": 11,
"location": "1",
"content": "1",
"interest_id": 1,
"longitude": 1,
"latitude": 1,
"place_id": "1",
"created_at": "2016-06-09 15:44:18",
"updated_at": "2016-06-02 14:28:42",
"deleted_at": null
},
{
"id": 2,
"user_id": 12,
"location": "Forest Lake QLD, Australia",
"content": "I'm newbie. Hello everybody",
"interest_id": 1,
"longitude": 152.9692508,
"latitude": -27.6236519,
"place_id": "ChIJB_NHl8hOkWsRMIne81qjAgU",
"created_at": "2016-06-09 14:28:42",
"updated_at": "2016-06-09 14:28:42",
"deleted_at": null
},
{
"id": 8,
"user_id": 11,
"location": "Hendra QLD, Australia",
"content": "What time is it?",
"interest_id": 1,
"longitude": 153.0635202,
"latitude": -27.4225981,
"place_id": "ChIJAXNg5PBYkWsRIIve81qjAgU",
"created_at": "2016-06-09 14:28:42",
"updated_at": "2016-06-09 14:28:42",
"deleted_at": null
},
{
"id": 9,
"user_id": 11,
"location": "Hendra QLD, Australia",
"content": "Nice Cream!!!!????????",
"interest_id": 2,
"longitude": 153.0635202,
"latitude": -27.4225981,
"place_id": "ChIJAXNg5PBYkWsRIIve81qjAgU",
"created_at": "2016-06-09 14:28:42",
"updated_at": "2016-06-09 14:28:42",
"deleted_at": null
},
{
"id": 4,
"user_id": 17,
"location": "Forest Lake QLD, Úc",
"content": "Have a Nice day!",
"interest_id": 1,
"longitude": 152.9692508,
"latitude": -27.6236519,
"place_id": "ChIJB_NHl8hOkWsRMIne81qjAgU",
"created_at": "2016-06-09 14:28:42",
"updated_at": "2016-06-09 14:28:42",
"deleted_at": null
},
{
"id": 7,
"user_id": 18,
"location": "Hendra QLD, Australia",
"content": "Where is Kiet Bui? ❤️❤️❤️❤️❤️",
"interest_id": 1,
"longitude": 153.0635202,
"latitude": -27.4225981,
"place_id": "ChIJAXNg5PBYkWsRIIve81qjAgU",
"created_at": "2016-06-09 14:28:42",
"updated_at": "2016-06-09 14:28:42",
"deleted_at": null
}
]
フィルターの後、id> 5の例:
{
"2": {
"id": 8,
"user_id": 11,
"location": "Hendra QLD, Australia",
"content": "What time is it?",
"interest_id": 1,
"longitude": 153.0635202,
"latitude": -27.4225981,
"place_id": "ChIJAXNg5PBYkWsRIIve81qjAgU",
"created_at": "2016-06-09 14:28:42",
"updated_at": "2016-06-09 14:28:42",
"deleted_at": null
},
"3": {
"id": 9,
"user_id": 11,
"location": "Hendra QLD, Australia",
"content": "Nice Cream!!!!????????",
"interest_id": 2,
"longitude": 153.0635202,
"latitude": -27.4225981,
"place_id": "ChIJAXNg5PBYkWsRIIve81qjAgU",
"created_at": "2016-06-09 14:28:42",
"updated_at": "2016-06-09 14:28:42",
"deleted_at": null
},
"5": {
"id": 7,
"user_id": 18,
"location": "Hendra QLD, Australia",
"content": "Where is Kiet Bui? ❤️❤️❤️❤️❤️",
"interest_id": 1,
"longitude": 153.0635202,
"latitude": -27.4225981,
"place_id": "ChIJAXNg5PBYkWsRIIve81qjAgU",
"created_at": "2016-06-09 14:28:42",
"updated_at": "2016-06-09 14:28:42",
"deleted_at": null
}
}
結果のキー2、3、および5を削除し、フィルタリング前のような配列のみを取得するにはどうすればよいですか。どんな助けもありがたいです。編集:私のコード:
$result = $result->filter(function ($item) {
return $item->id > 5;
})->all();
values()
を追加してみてください
$result = $result->filter(function ($item) {
return $item->id > 5;
})->values()->all();
$result = $result->filter(function ($item) {
return $item->id < 5;
})->all();
楽しい !!
$collection = collect([1, 2, 3, 4]);
$filtered = $collection->filter(function ($item) {
return $item < 2;
});
$filtered->all();
return $filtered;
結果:[1]
しかし:
$collection = collect([1, 2, 3, 4]);
$filtered = $collection->filter(function ($item) {
return $item > 2;
});
$filtered->all();
return $filtered;
結果:{"2":3、 "3":4}
どうして、どうして...
並べ替えの際にも同じ問題がありました。例は、ポイントと目標によるゲーム結果の順序付けです。ソートにより、結果にキー属性が追加されます。したがって、最後の-> values()-> all()でキーなしの配列値を取得します。
例えば:
$ sorted = $ resultados-> sortByDesc( 'pts')-> sortByDesc( 'gf')-> values()-> all();
あなたの場合:
$ filteredValues = $ filtered-> values()-> all();
それがあなたのお役に立てば幸いです。
filter()
ヘルパーを使用する場合、このヘルパーは機能するため、これを行うことはできません。このメソッドにはパラメーターなどはありません。返されたコレクションのみを再構築できます。
または、filter()
メソッドコードを使用して、myFilter()
のような独自のヘルパーを作成し、少し変更することができます。次に例を示します。
public function myFilter(callable $callback)
{
$return = [];
foreach ($this->items as $key => $value) {
if ($callback($value, $key)) {
// $return[$key] = $value; // original line from filter() method
$return[] = $value; // Here you want to remove $key
}
}
return new static($return);
}
または、インデックス付きのコレクションを使用することもできます。通常、コレクションを使用して繰り返し処理を行いますが、これらのインデックスは邪魔になりません。