我正在尝试在保存到数据库之前更改字段工资的值。
我在PHP事件上使用以下代码:
->on( 'preCreate', function ( $editor, $values ) {
$editor->field( 'salary' )->setValue( $editor->field( 'salary' ) / 100 );
} )
->on( 'preEdit', function ( $editor, $id, $values ) {
$editor->field( 'salary' )->setValue( $editor->field( 'salary' ) / 100 );
} )
我需要将值除以100。
但这是行不通的。
有帮助吗?