wi-6ren">
gpt4 book ai didi

php - Laravel 将数组放入选择框

转载 作者:可可西里 更新时间:2023-10-31 23:55:56 25 4
gpt4 key购买 nike

我的选择框出现了一些问题,我会将所有可用的类别放入

在我的 Controller 中,我正在使用这个片段:

 return View::make("stories.add")
->with("title","Indsend novelle")
->with("categories", Category::all());

在我看来,我正在尝试将所有类别放入选择框中:

 {{Form::select("category", $categories)}}

我可以做这个,但是那行不通,因为 Form::select 必须是一个数组?

@foreach ( $categories as $category )
{{$category->name}}
@endforeach

怎么办?

我已经做了这个并且它可以工作,但是它看起来太丑了而且对用户不友好,有什么建议吗?

  $test = Category::all(); $myArray = array();
foreach ( $test as $o):
$myArray[] = $o->name;
endforeach;

return View::make("stories.add")
->with("title","Indsend novelle")
->with("categories", $myArray);

变量转储:

    array(2) {
[0]=>
object(Category)#36 (5) {
["attributes"]=>
array(4) {
["id"]=>
string(1) "1"
["name"]=>
string(12) "Alderforskel"
["created_at"]=>
string(19) "0000-00-00 00:00:00"
["updated_at"]=>
string(19) "0000-00-00 00:00:00"
}
["original"]=>
array(4) {
["id"]=>
string(1) "1"
["name"]=>
string(12) "Alderforskel"
["created_at"]=>
string(19) "0000-00-00 00:00:00"
["updated_at"]=>
string(19) "0000-00-00 00:00:00"
}
["relationships"]=>
array(0) {
}
["exists"]=>
bool(true)
["includes"]=>
array(0) {
}
}
[1]=>
object(Category)#39 (5) {
["attributes"]=>
array(4) {
["id"]=>
string(1) "2"
["name"]=>
string(7) "Bondage"
["created_at"]=>
string(19) "0000-00-00 00:00:00"
["updated_at"]=>
string(19) "0000-00-00 00:00:00"
}
["original"]=>
array(4) {
["id"]=>
string(1) "2"
["name"]=>
string(7) "Bondage"
["created_at"]=>
string(19) "0000-00-00 00:00:00"
["updated_at"]=>
string(19) "0000-00-00 00:00:00"
}
["relationships"]=>
array(0) {
}
["exists"]=>
bool(true)
["includes"]=>
array(0) {
}
}
}

最佳答案

这样使用:

$categories = Category::pluck('name', 'id');

return View::make('....', compact('categories'));

现在在 View 中:

{{ Form::select('selectName', $categories, null); }}

编辑:在文档中找到 Query builder # Select看看这个

关于php - Laravel 将数组放入选择框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17162876/

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