dongma1666 2017-03-29 01:31
浏览 23
已采纳

FOSUserBundle编辑EDITPAGE PROFILE

This is my code:

<form action="{{ path('fos_user_profile_edit') }}" {{ form_enctype(form) }} method="POST" class="fos_user_profile_edit">            
    <div class="edittext_registre1">{{ form_label(form.username) }}</div>
    <div class="editbox_registre1">{{ form_widget(form.username) }}</div>
    <br/><br/>
    <div class="edittext_registre2">{{ form_label(form.email) }}</div>
    <div class="editbox_registre2">{{ form_widget(form.email) }}</div>
    <br/><br/>
    <div class="edittext_registre3">{{ form_label(form.current_password) }}</div>
    <div class="editbox_registre3">{{ form_widget(form.current_password) }}</div>
    <br/><br/>
    <div>
        <input type="submit" value="{{ 'profile.edit.submit'| trans }}" />
    </div>
</form>

When I click submit button, my profil have no change :(

but when I change my code by this code:

<form action="{{ path('fos_user_profile_edit') }}" {{ form_enctype(form) }} method="POST" class="fos_user_profile_edit">


    {% include "FOSUserBundle:Profile:edit_content.html.twig" %}

    <div>
        <input type="submit" value="{{ 'profile.edit.submit'| trans }}" />
    </div>
</form>

Why ? What should I do?

Thank you so much.

  • 写回答

1条回答 默认 最新

  • dsjk3214 2017-03-29 02:06
    关注

    Have you referred to http://symfony.com/doc/current/form/form_customization.html? Havent worked with symfony for a while now, but as far as i remember, the following is the proper way to go. Can you please check if it works?

    {{ form_start(form, { 'action': path('fos_user_profile_edit'), 'attr': { 'class': 'fos_user_profile_edit' } }) }}
      <div class="edittext_registre1">
        {{ form_label(form.username) }}
      </div>
      <div class="editbox_registre1">
        {{ form_errors(form.username) }}
        {{ form_widget(form.username) }}
      </div>
      <br/>
      <br/>
      <div class="edittext_registre2">
        {{ form_label(form.email) }}
      </div>
      <div class="editbox_registre2">
        {{ form_errors(form.email) }}
        {{ form_widget(form.email) }}
      </div>
      <br/>
      <br/>
      <div class="edittext_registre3">
        {{ form_label(form.current_password) }}
      </div>
      <div class="editbox_registre3">
        {{ form_errors(form.current_password) }}
        {{ form_widget(form.current_password) }}
      </div>
      <br/>
      <br/>
      {{ form_rest(form) }}
      <div>
        <input type="submit" value="{{ 'profile.edit.submit'|trans }}" />
      </div>
    {{ form_end(form) }}
    

    Are there any errors rendered? (and does form_rest render any more fields? Maybe your original code had errors, because there were more required fields in fosuserbundle that were required but you were not including those fields in your form)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable