2

我从以下代码中获得了所需的选项,但我需要添加一个空选项作为返回数组的第一个值,'' => 'none',然后是其余值。

function dropdown() {
  return db_select('node', 'n')
    ->condition('n.type', 'abc')
    ->condition('n.status', 1)
    ->fields('n', array('nid', 'title'))
    ->orderBy('n.title', 'ASC')
    ->execute()
    ->fetchAllKeyed();
}

但是,这仅给出数据库中的值。

4

1 回答 1

5

您可以在返回数据之前添加条目:

function dropdown() {
  $data = db_select('node', 'n')
    ->condition('n.type', 'abc')
    ->condition('n.status', 1)
    ->fields('n', array('nid', 'title'))
    ->orderBy('n.title', 'ASC')
    ->execute()
    ->fetchAllKeyed();
  return ['' => 'none'] + $data ;
}

可能的输出:

array(463) {
  ['']=>
  string(4) "none"
  [367]=>
  string(7) "Title 1"
  [63]=>
  string(7) "Title 2"
  ...
}

如果没有可用于您的条件的节点,它将返回:

array(1) {
  [""]=>
  string(4) "none"
}
于 2018-03-16T13:25:57.063 回答