回答:
EntityFieldQueryを使用して実現できます。
D8のEntityFieldQueryは書き直されました。
Drupal 8:
$query = \Drupal::entityQuery('entity_test');
$default_langcode_group = $query->andConditionGroup()
->condition('user_id', $properties[$default_langcode]['user_id'], '=', $default_langcode)
->condition('name', $properties[$default_langcode]['name'], '=', $default_langcode);
$langcode_group = $query->andConditionGroup()
->condition('name', $properties[$langcode]['name'], '=', $langcode)
->condition("$this->field_name.value", $field_value, '=', $langcode);
$result = $query
->condition('langcode', $default_langcode)
->condition($default_langcode_group)
->condition($langcode_group)
->sort('name', 'ASC', $default_langcode)
->execute();
エンティティのフィールドの値を取得するにはどうすればよいですか?
$query = \Drupal::entityQuery('node')
->condition('status', 1)
->condition('changed', REQUEST_TIME, '<')
->condition('title', 'cat', 'CONTAINS')
->condition('field_tags.entity.name', 'cats');
$nids = $query->execute();
フィールド値で特定のノードをロードする最も簡単な方法は、メソッドを使用することloadByProperties()
です。
1つ以上のフィールド値を指定すると、フィールド値に一致するノードを含む配列が返されます。
$nodes = \Drupal::entityTypeManager()
->getStorage('node')
->loadByProperties(['title' => $title]);
通常、ノードをループします。あなたの場合、特定の1つのノードを探しています。単一のノードも配列で返されるため、適用reset()
します。何も見つからなかった場合、ノードまたはNULLを返します。
if ($node = reset($nodes)) {
// found $node that matches the title
}
$node = reset...
、ハッシュ自体は一意であるため、コードの2番目の部分()は必要ないと思います。
Node::
ノードをロードするために使用する必要があります、正しいですか?