1
  • 如何更改提交按钮上的文本?
  • 我依稀记得提交后可以将用户定向到页面的选项。有记录吗?
4

1 回答 1

1

提交按钮的行为就像任何 Symfony Forms 字段一样,所以你可以简单地这样做:

submit:
  type: submit
  options:
    label: My Button Text

至于重定向,有点。您还不能重定向,但您可以提供不同的 HTML。

{% set html_pre = '<h1>This will appear above the un-submitted form</h1>' %}
{% set html_post = '<p>Thank you for submitting your form<p>' %}
{{ boltforms('formname', html_pre, html_post) }}
于 2015-03-15T16:22:07.940 回答