duanlinma5885 2010-04-28 13:22
浏览 31
已采纳

在drupal中获取更改的表单值

I created one module in drupal name as newmodule.I use form alter to alter user registration form for adding one field location.When i submit the form, how i can get the value of the new field which i created .

  • 写回答

3条回答 默认 最新

  • douhan4812 2010-04-28 13:58
    关注

    To elaborate on the previous answers, somewhere in your hook_form_alter function, you want to tell the form to run your own #submit handler, e.g.:

    function mymodule_form_alter(&$form, &$form_state, $form_id) {
      $form['new_field'] = array( ... ); // You already did this, right?
      $form['#submit'][] = 'mymodule_submit_handler'; // Add this
    }
    

    Note: you should be appending on #submit here, not replacing it. Then in your submit handler, you can get the value easily, e.g.:

    function mymodule_submit_handler($form, &$form_state) {
      $value = $form_state['values']['new_field'];
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 RL+GNN解决人员排班问题时梯度消失
  • ¥15 统计大规模图中的完全子图问题
  • ¥15 使用LM2596制作降压电路,一个能运行,一个不能
  • ¥60 要数控稳压电源测试数据
  • ¥15 能帮我写下这个编程吗
  • ¥15 ikuai客户端l2tp协议链接报终止15信号和无法将p.p.p6转换为我的l2tp线路
  • ¥15 phython读取excel表格报错 ^7个 SyntaxError: invalid syntax 语句报错
  • ¥20 @microsoft/fetch-event-source 流式响应问题
  • ¥15 ogg dd trandata 报错
  • ¥15 高缺失率数据如何选择填充方式