保存或删除节点后如何执行重定向到自定义页面?
我尝试执行的操作不起作用,但仍然重定向到/ node / {id}: function hook_form_alter(&$form, $form_state, $form_id) { $form['actions']['submit']['#submit'][] = 'callback_set_redirect'; } function callback_set_redirect($form, FormStateInterface $form_state) { $form_state->setRedirect('custom.landing.page'); }