dougu3988 2016-11-21 04:16 采纳率: 100%
浏览 88
已采纳

laravel从控制器数组中获取值

this is my PermissionController.php

foreach (Route::getRoutes() as $route)
{
    $action = $route->getAction();

    if (array_key_exists('controller', $action))
    {
       $controllers[] = $action['controller'];
    }
}
return view('permission.create')->withControllers($controllers);

and my permission/create/php is like this :

{!! Form::select('class_name[]', $controllers, null, ['class' => 'form-control', 'multiple']) !!}

here in controller, it put the name of all controllers in $controller and send it to the blade but when i select some of them, the request gives me their keys instead of value

public function store(Request $request)
{
    return $request->get('class_name');
}

if I select the first one and third one the output is for example :{"1","3"} but I want their value like this : {"UserController.php", "TestController.php"}

  • 写回答

1条回答 默认 最新

  • dua55014 2016-11-21 08:46
    关注

    use this code instead Forms::Select or create your custom List with Laravel built-in List Function :

    <select name="class_name[]" multiple>
    @foreach($controllers as $class)
        <option value="{{$class}}" >{{$class}}</option>
    @endforeach
    </select>
    

    or simply replace the

     $controllers[] = $action['controller'];
    

    with

    $controllers[$action['controller']] = $action['controller'];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题