如果我有一个 AJAX 调用,它返回一个名为 的数组$selectArray,也就是说[foo,bar,foobar],如何在 Laravel 查询生成器中使用它以便对其进行清理?目前,我有// Sanitizing Input// $acceptableSelects is an array of columns in a table. Checks if there are any elements in $selectArray that is invalid// If the check fails, it return the default array$sanSelectArray = !array_diff($selectArray, array_keys($accetableSelects)) && count($selectArray) < 8 ? $selectArray : [foo,foo2,foo3]foreach($sanSelectArray as $ele){ $query->addSelect('table.' . $ele); // Required since I have a LEFT JOIN}这似乎非常不直观。要么有更好的方法来清理输入,要么在SELECT没有多种addSelect()方法的情况下传递 Array,但我找不到任何方法。
添加回答
举报
0/150
提交
取消