有没有办法在 "submit-success" 的 AMP 表单中添加 AMP 列表?

Is there a way to add AMP list in AMP forms in "submit-success"?

我想在 AMP 表单提交中添加列表,但我不确定是否有办法做到这一点。

这方面需要帮助。

您可以在表单响应中呈现动态 HTML:

<form method="post"
  action-xhr="/submit"
  target="_top">
  ...
  <div submit-success>
    <template type="amp-mustache">
      Hello {{name}}!
    </template>
  </div>
</form>

查看实例 here