作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 laravel 5.4,并且我的记录更新表单中有一个用于性别的选择字段。我已经得到了正在更新的记录的性别值。它是{{$customer_profile->gender}}
但我无法弄清楚如何根据 {{$customer_profile->last_name}}
的值在表单中设置此选择字段的默认值,该值是 m
或 f
<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/
我正在使用 git clone 部署我的 Laravel 项目并使用 git pull 进行更新 它工作正常,但每次部署时,我都必须从 config/app.php providers 数组和 ali
我是一名优秀的程序员,十分优秀!