gpt4 book ai didi

php - 分别在drupal中渲染表单

转载 作者:行者123 更新时间:2023-12-04 06:03:04 25 4
gpt4 key购买 nike

我想在 drupal 中逐项单独呈现表单。

function form($form){

$form['item1'] = array(
'type' => 'textarea', .........etc

$form['item1'] = array(
'type' => 'textarea', .........etc

$form['submit'] = array(
'type' => 'submit', .........etc
}

$a = drupal_get_form('form');

drupal_render($a['item1']);

drupal_render($a['item2']);

drupal_render($a['submit']);

表单已成功呈现,但似乎提交按钮不起作用(不调用提交功能)

有什么帮助吗?

谢谢

最佳答案

你只需要再调用一次 drupal_render() :

drupal_render($a);

它不会重新渲染您之前渲染的所有内容。

关于php - 分别在drupal中渲染表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8719793/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com