3
表单提交后重定向
我在Drupal 8中创建了自定义表单,我记得我们可以使用$form_state['redirect'] = 'mycustompath';在自定义提交处理程序中设置的重定向到Drupal 7 中的自定义路径,但是在Drupal 8中提交表单后如何重定向用户? 我知道我应该使用submitForm方法: public function submitForm(array &$form, FormStateInterface $form_state) { //submissions jobs ... //redirect path }
15
forms
8
redirection