$clien-6ren">
gpt4 book ai didi

php - Laravel-4 如何使用 id 值和 name 值从数据库中填充选择框

转载 作者:可可西里 更新时间:2023-10-31 22:06:40 24 4
gpt4 key购买 nike

我想用项目 Controller 中数据库中的clients填充一个选择框,因为项目将属于client,但它也属于用户已登录。

我想创建一个如下所示的选择框:

<select>
<option value="$client->client_id">$client->client_name</option>
<option value="$client->client_id">$client->client_name</option>
</select>

我在 laravel 中有这个,它用客户端名称填充我的选择字段,但是 value 属性有客户端名称,我宁愿它有 client_id。

我这样做的方式如下:

项目 Controller .php

public function create()
{
//find logged in users clients
$clients = Auth::user()->clients;
$client_selector = array();
foreach($clients as $client) {
$client_selector[$client->client_name] = $client->client_name;
}
// load the create form (app/views/projects/create.blade.php)
return View::make('projects.create', array('client_selector' => $client_selector));
}

创建.blade.php

{{ Form::open(array('action' => 'ProjectController@store', 'id' => 'createproject')) }}
<div class="form-group">
@if(count($client_selector)>0)

{{ Form::label('select_client', 'Select Client', array('class' => 'awesome')); }}

<!-- SELECT IS CREATED HERE -->
{{Form::select('client', $client_selector, array_values($client_selector)[0])}}

@endif

</div>
<div class="form-group">
{{ Form::label('project_name', 'Project Name') }}
{{ Form::text('project_name', Input::old('project_name'), array('class' => 'form-control')) }}

</div>

从创建选择的方式可以看出,它使用 client_name 来填充值属性,而我并不是 Laravel 的真正专家,所以我不确定如何更改这些属性。

如果有任何人可以告诉我这是如何完成的或者有更好的方法来实现这一点,那么请给我一些例子!

提前致谢。

最佳答案

找到一种方法来做到这一点

客户端 Controller .php

public function create() {

// queries the clients db table, orders by client_name and lists client_name and id
$client_optons = DB::table('clients')->orderBy('client_name', 'asc')->lists('client_name','id');

return View::make('projects.create', array('client_options' => $client_options));
}

创建.blade.php

// this form is now populated with the value as id and the option names as the client_name
{{ Form::select('clients', $client_options , Input::old('clients')) }}

希望这可以帮助其他遇到此类问题的人。

关于php - Laravel-4 如何使用 id 值和 name 值从数据库中填充选择框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20019369/

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