我如何将JTable属性设置为null并保存它 我的代码到目前为止没有成功:
$table = JTable::getInstance($type='detalegrupy', $prefix='FootsalTable', $config = array());
$table->load($id);
$table->promotion = NULL;
$id_group = $table->id_group;
$table->store();
或如何将其恢复为默认值。
答案 0 :(得分:2)
我找到了答案,
$table->store(TRUE);
完成了工作。 对不起垃圾邮件
答案 1 :(得分:0)
编辑文件administrator/components/YOUR_COMPONENT/tables/NAME_OF_YOUR_TABLE.php
并在表类中添加此函数:
public function store($updateNulls = true)
{
return parent::store($updateNulls);
}