gpt4 book ai didi

php - 通过 href 发送变量

转载 作者:行者123 更新时间:2023-11-28 23:57:46 25 4
gpt4 key购买 nike

我试图通过我的 View 上的 href url 传递一个变量,并让 Controller 函数查询基于这些变量。这是获得更好想法的代码。

     @foreach ($totalCount as $id => $name) {{-- id is the admin id --}}
<?php
$admin_id = $id;
?>
@foreach($name as $n => $status) {{-- $n is the name, $status is array of the counts --}}
<tr>
<td>
{{$n}}
<br>
<a href="#">Closed</a>
</td>
<td><a href="/ap1/{{$new_lead}}/applications?status=2&id={{{$admin_id}}}">{{ isset($status[2]) ? $status[2] : 0 }}</a></td>
<td><a href="/ap1/{{$new_lead}}/applications?status=1&id={{{$admin_id}}}">{{ isset($status[1]) ? $status[1] : 0 }}</a></td>
<td><a href="/ap1/{{$new_lead}}/applications?status=3&id={{{$admin_id}}}">{{ isset($status[3]) ? $status[3] : 0 }}</a></td>
<td><a href="/ap1/{{$new_lead}}/applications?status=4&id={{{$admin_id}}}">{{ isset($status[4]) ? $status[4] : 0 }}</a></td>
<td><a href="/ap1/{{$new_lead}}/applications?status=5&id={{{$admin_id}}}">{{ isset($status[5]) ? $status[5] : 0 }}</a></td>
<td><a href="/ap1/{{$new_lead}}/applications?status=6&id={{{$admin_id}}}">{{ isset($status[6]) ? $status[6] : 0 }}</a></td>
</tr>
@endforeach
@endforeach

如您所见,我从我的数据结构中获取 $id 并将其输入 $admin_id 以便我可以使用它。我获取该管理员 ID 并将其放入 href url,以便我的 Controller 可以使用它并正确查询。

这是来 self 的 Controller 的代码:

     public function index()
{
$query = AdvertiserApplication::with('admin');
$status = Input::get('status');
$id = Input::get('admin_id');
dd($id);

if(!empty($id)) {
$query->where('assigned_to', '=', $id);
}
if (!empty($status) || $status === '0')
$query->where('staus', '=', $status);



$applications = $query->get();

return View::make('admin.advertisers.application_list', ['applications' => $applications, 'admin_id' => AuthAdmin::admin(false)]);
}

我在这里做的是在 $id 和 $status 为空时查询整个表。 (顺便说一句,状态来自应用程序 ListView 上的下拉表。)我遇到的问题是 $id 输入不起作用,它变为 NULL。任何帮助将不胜感激!

最佳答案

应该是

Input::get('id');

代替

Input::get('admin_id');

关于php - 通过 href 发送变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31079867/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com