我使用扩展构建器创建了一个extbase扩展。 但是当我调用findAll()时,它会返回映射表的第一行,但是会一次又一次地返回。结果的数量是正确的,但它们都只是第一行。
映射:
config.tx_extbase {
persistence {
classes {
Vendor\ExtName\Domain\Model\Word {
mapping {
tableName = table_name
columns {
id.mapOnProperty = id
string.mapOnProperty = string
}
}
}
}
}
}
的listAction():
public function listAction() {
$words = $this->objRepository->findAll();
$this->view->assign('obj', $objects);
}