gpt4 book ai didi

php - 使用来自数据库 Laravel Blade 的数据填充单选按钮

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:00:41 25 4
gpt4 key购买 nike

所以我现在正在处理程序的更新部分,现在我想用数据库中的旧记录填充我的表单以对其进行编辑。现在我的问题是单选按钮,如何才能选择真正的单选按钮。我试过这段代码,我在单选按钮上使用 if

    {{ Form::label('Type','Type')}}    
{{ Form::radio('ctype', '1',if(($item->bname)==1){true}) }}
{{ Form::label('Rooster','Rooster')}}    
{{ Form::radio('ctype', '0') }}
{{ Form::label('Hen','Hen')}}    

但是我只是得到错误500,请帮忙

最佳答案

在文档中它说:

echo Form::radio('name', 'value', true);

所以你应该这样走:

{{ Form::radio('ctype', '1', $item->bname == 1) }}

您不需要任何额外的括号。第三个参数是一个简单的 bool 值。

关于php - 使用来自数据库 Laravel Blade 的数据填充单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27478723/

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