gpt4 book ai didi

silverstripe - 可选的 OptionsetField 是 SilverStripe 3.2

转载 作者:行者123 更新时间:2023-12-02 01:31:53 24 4
gpt4 key购买 nike

在 SilverStripe 3.1.* 中,我使用了一些带有 OptionsetFields 的表单,这些表单是可选的,因此不需要做出选择。这运作良好。但是自从我更新到 SilverStripe 3.2.0 之后,表单不再接受这个。提交时它会附带一条验证消息,即使我没有在整个表单中使用验证。看这个截图:

enter image description here

这是字段的代码:

$ClassField = OptionsetField::create('Class', _t('General.CLASS', "Class"), array(
"S" => "S",
"E" => "E",
"U" => "U",
"R" => "R",
"O" => "O",
"P" => "P"
));

有没有想在 SilverStripe 3.2.0 中再次使这个字段可选?

最佳答案

这似乎是 3.2 中的错误,您现在必须使用 setEmptyString() 告诉 OptionsetField 它可以为空:

$ClassField = OptionsetField::create(
'Class',
_t('General.CLASS', "Class"),
array(...)
)
->setEmptyString('none');

关于silverstripe - 可选的 OptionsetField 是 SilverStripe 3.2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33732666/

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