Extbase存储库findAll()什么都不返回

时间:2015-01-07 11:55:56

标签: typo3 extbase typo3-6.2.x

findAll()在我的资源库中的一个方法中找不到我的资源库中的任何内容,但它在我的BE中有效。

public function showAction() {
    $p = $this->modulRepository->findAll();
    $this->view->assign('pruefling',$p);
}

我尝试添加

plugin.tx_rere.persistence.storagePid = 4

到我的TypoScript设置 - > extbase repository findAll() returns result null。 该表不是空的。

但它仍然不起作用。

1 个答案:

答案 0 :(得分:0)

这是因为没有提供确切的存储 pid

plugin.tx_urpluggin.persistence.storagePid = 4

要知道您是否提供了正确的存储 pid

  1. 转到Templatemodule
  2. 选择根模板
  3. 从顶部下拉列表中选择typoscript对象浏览器
  4. 检查插件中的配置
  5. 如果存储 pid 为空,请点击它,您将获得 typoscript 。将其粘贴到主模板中。