1

我正在尝试查询某种类型的所有段落,但没有得到任何输出。我的查询对吗?当前返回一个空数组。

$query = $this->node->getQuery()
          ->condition('type', 'my_paragraph_type')
          ->execute();
        $this->logger->info('query: ' . json_encode($query));
4

1 回答 1

1

尝试使用 entityQuery('entity_type')

$pids = \Drupal::entityQuery('paragraph')
  ->condition('type', 'my_paragraph_type')
  ->execute();
于 2019-03-05T00:09:52.267 回答