嗨,我在添加视图中动态添加了输入字段。当我提交表单时,我希望将所有输入字段连接成一个字符串并存储在单个数据库字段中。
我试图使用 cakephp 的 beforeSave 方法来实现这一点,但我似乎无法找到如何获取模型中文本字段的值。
function beforeSave($options)
{
$result = '';
$bool = true;
$counter = 0;
while($bool == true)
{
$result = $result + ',' + $this->data['Variable']['selectOptions' + counter];
}
return true;
}
有人对如何实现这一目标有任何想法吗?
提前致谢。