我正在使用自定义textarea字段处理后端表单。保存表单后应解析此字段,并将解析的数据插入另一个模型。
以下是我为该模型所做的工作。
class SampleOne extends Model
{
public function beforeSave()
{
// here I removed the custom field, and go ahead to save it
.....
$this->setRawAttributes(.....);
}
public function afterSave()
{
// here I am planning to parsed my custom field, and save mass data to another model.
SampleTwo::insert($dataArray);
}
}
它有意义还是我有更好的选择?