dongmeng4742 2017-10-11 15:24
浏览 85
已采纳

如何使用Laravel 5.5中的JSON指定数据填充Form :: select()

I am having issues with populating Form::select() laravel collective component.

As this question describes : Foreach inside a Form::select in Laravel 4

I do not have a model for built in methods to get data, I am using guzzle to parse json data with custom methods, so either I do not have the "pluck()" method to pluck only names of something.so is there any other ways ?

Currently I have this, trying to make it work :

public function create()
{
    //
    $cat_array = null;
    $categories = $this->categories->all();

    if($categories['success']){

      foreach ($categories['message'] as $category) {
        $cat_array = array(
          $category['cat_name'],
        );
      }

    }

    return view('admin.default.pages.categories.create', compact('cat_array'));
}

And in create from :

{{ Form::select('cat_parent_id', $cat_array, null, ['placeholder' => 'None']) }}

Thanks in Advance !

  • 写回答

1条回答 默认 最新

  • dpxua26604 2017-10-11 15:36
    关注

    You can still use collection methods but you need to manually make the collection with collect

    public function create()
    {
        //
        $cat_array = null;
        $categories = $this->categories->all();
    
        if($categories['success']){
           $cat_array = collect($categories['message'])->pluck("cat_name")->all();
        }
    
        return view('admin.default.pages.categories.create', compact('cat_array'));
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 python变量和列表之间的相互影响
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP
  • ¥15 Python turtle 画图
  • ¥15 关于大棚监测的pcb板设计
  • ¥15 stm32开发clion时遇到的编译问题
  • ¥15 lna设计 源简并电感型共源放大器
  • ¥15 如何用Labview在myRIO上做LCD显示?(语言-开发语言)