如何获得第一个下拉值 none

How to get the first drop down value as none

我从以下代码中获得了所需的选项,但我需要添加一个空选项作为返回数组的第一个值,'' => '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();
}

但是,这仅提供数据库中的值。

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

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"
  ...
}

如果没有适合您条件的节点,它将 returns:

array(1) {
  [""]=>
  string(4) "none"
}