我通过执行一个雄辩的查询创建一个视图,然后将其传递给Blade。
@if($contacts != null)
//display contacts
@else
You dont have contacts
@endif
然而,它总是假设$ contacts有一些东西,即使查询没有给我任何东西。
我做了dd($contacts)
并得到:
Collection {#247 ▼
#items: []
}
如何检查它是否为空?
答案 0 :(得分:24)
如果它是一个Eloquent Collection,因为它似乎来自你的例子,你可以使用isEmpty集合助手函数;
@if(!$contacts->isEmpty())
//display contacts
@else
You dont have contacts
@endif
答案 1 :(得分:8)
有几种方法:
if (!empty($contacts))
if (!contacts->isEmpty())
if (count($contacts) > 0)
if ($contacts->count() > 0)
答案 2 :(得分:4)
您的Eloquent查询返回结果数组,因此您可以使用count
。
@if(count($contacts) > 0)
//Display contacts
@else
//No contacts
@endif
答案 3 :(得分:4)
您的$contacts
为空。 Bcoz您的查询无法获取数据。一旦您的查询无法获取数据,它就会返回一个空的arrya。所以检查一下
@if($contacts->isEmpty())
{{ 'Empty' }}
@else
{{ 'you have data' }}
@endif
答案 4 :(得分:2)
您必须执行以下操作:
在您的“ ContactController ”视图中:
public function index()
{
$contacts = Contact::all();
return view('page.index', compact('contacts'))
}
后来查看“ index.blade.php ”:
@if (collect($contacts)->isEmpty()) {{-- remember that $contact is your variable --}}
<p>There is no record available at this time</p>
@else
@foreach($contacts as $contact)
{{$contact->name_contact}}
@endforeach
@endif
现在,我想您有一个名为 Contact
的模型答案 5 :(得分:1)
您可以使用blank($contacts)
助手Laravel:blank
答案 6 :(得分:1)
我在助手类中将方法添加为全局方法
function isNullOrEmpty($value)
{
return is_null($value) || empty($value);
}
答案 7 :(得分:0)
如果它在控制器内部,将会有所帮助
if(empty($query) {
//do something
}else{
//do some stuff
}
答案 8 :(得分:0)
int[] arr = new int[]{5,20 ,1 ,12};
IntStream.range(0, arr.length)
.mapToObj(index -> new SimpleEntry<>(index, arr[index]))
.min(Comparator.comparingInt(SimpleEntry::getValue))
.ifPresent(s -> System.out.println(s.getValue()+
" is the smallest number and it's index" + s.getKey() + "of array"));
这在控制器中也可以正常工作