在执行redirect()方法之前使用reset()方法重置Model过滤器。
示例代码:
public function actionFoo()
{
$model = new Model();
$model->filterSomeData();
if ($model->save()) {
// 重置Model过滤器
$model->reset();
return $this->redirect(['bar']);
}
}