gpt4 book ai didi

html - 拉拉维尔 | html - 如何根据数据库字段在表单中设置默认选择选项?

转载 作者:行者123 更新时间:2023-12-02 03:57:48 24 4
gpt4 key购买 nike

我正在使用 laravel 5.4,并且我的记录更新表单中有一个用于性别的选择字段。我已经得到了正在更新的记录的性别值。它是{{$customer_profile->gender}}

但我无法弄清楚如何根据 {{$customer_profile->last_name}} 的值在表单中设置此选择字段的默认值,该值是 mf

 <div class="form-group">
<label class="control-label">Gender</label>
<select class="form-control" name="gender">
<option value="m">Male</option>
<option value="f">Female</option>
</select>
</div>

请帮忙

最佳答案

我猜你的意思是如何根据$customer_profile->gender值设置selected属性。你可以这样做:

<option value="m" {{ $customer_profile->gender === 'm' ? 'selected' : '' }}>Male</option>
<option value="f" {{ $customer_profile->gender === 'f' ? 'selected' : '' }}>Female</option>

关于html - 拉拉维尔 | html - 如何根据数据库字段在表单中设置默认选择选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43213862/

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