5

我尝试在表单中打印一个drupal“选择选项”元素。我认为drupal_render不应用。#default_value除了#default_value不应用之外,一切都可以。
问题出在哪里?有人知道我该怎么做吗?接受#default_value价值string吗?

这是我的代码的伪代码:

function test_menu(){
$items=array();

    $items['admin/config/regional/test']=array(
    'title' => 'test',
    'description' => t('test'),
    'page callback' =>'drupal_get_form',
    'page arguments' => array('test_function'),

);
$items[]=array();
return $items;
}


function test_function(){
 $header = array
  (
  'test1' => t('test1'),
  'test2'=> t('test2'),
  );
 $a=(1,2,3);
 $$options=array();
 foreach($a as $i=>$v)
  {
    $f['type'] = array(
   '#type' => 'select',
   '#options' => array(1,2,3,4),
   '#default_value'=>1,
    );
$options += array($name=>array( 'test1' => $v,
   'test2'=> drupal_render($f['type']) ,
  }
   $form['table'] = array
   (
   '#type' => 'tableselect',
   '#header' => $header,
   '#options' => $options,
   '#multiple' => FALSE
   //'#empty' => t('No users found'),
   );
   $form['submit'] = array
       (
   '#type' => 'submit',
   '#value' => t('Submit'),
    );
   return $form;
 }    

我测试 textfield但它也不起作用并且#default_value在 drupal_render 中不接受

    $f['test3']=array(
    '#type'=>'textfield',
    '#title'=>'test3',
    '#default_value' =>'aaa',
);

我想这是因为使用 drupal_render 。有人有解决方案吗?

4

4 回答 4

11

在 drupal_get_form 中使用的 Drupal_render 中,#default_value not set use 必须使用 #value instaed。

$f['type'] = array(
'#type' => 'select',
'#options' => drupal_map_assoc(array('1','2','3','4')),
'#value'=> '1',
);
于 2012-07-20T14:25:54.103 回答
4

以下代码不起作用:

$form['title'] = array(
'#type' => 'select',
'#options' => drupal_map_assoc(array(t('opt1'), t('opt3'), t('opt4'), t('opt5'), t('opt6'))),
'#default_value' => array($default_value_key));


$form['title1'] = array(
'#type' => 'select',
'#options' => drupal_map_assoc(array(t('opt1'), t('opt3'), t('opt4'), t('opt5'), t('opt6'))),
'#default_value' => array($default_value_key));

return $form;

但后来我做了以下事情:

$form['group'] = array('#tree' => TRUE);

$form['group']['title'] = array(
'#type' => 'select',
'#options' => drupal_map_assoc(array(t('opt1'), t('opt3'), t('opt4'), t('opt5'), t('opt6'))),
'#default_value' => array($default_value_key));


$form['group']['title1'] = array(
'#type' => 'select',
'#options' => drupal_map_assoc(array(t('opt1'), t('opt3'), t('opt4'), t('opt5'), t('opt6'))),
'#default_value' => array($default_value_key));

return $form;

现在默认值有效。

于 2012-10-12T09:07:18.697 回答
2

我也有同样的问题。最后,我找到了一种方法。正如你所说, default_value 不起作用。因此,将 default_value 固定为 0。并更改选项数组,将默认值放在顶部。

于 2014-01-22T21:37:31.530 回答
0

如果您查看Drupal 的 Form API中的示例,您会看到该#options设置采用键值对数组,并且在 中#default_value,您应该指定默认值的,而不是字符串值。

此外,根据设置的文档#options期望#optionsString 值。所以你的选择应该更像:

$f['type'] = array(
   '#type' => 'select',
   '#options' => drupal_map_assoc(array('1','2','3','4')),
   '#default_value'=> '1',
);
于 2012-07-19T12:10:22.167 回答