gpt4 book ai didi

typo3 - 从 TYPO3 v9 升级到 v10 后 : Show Pages no longer work (Cannot access protected property)

转载 作者:行者123 更新时间:2023-12-02 16:23:41 30 4
gpt4 key购买 nike

我写了一个基于 TYPO3 版本 9 的扩展。我现在已经将它安装在 TYPO3 版本 10 系统中,一切似乎都运行良好。只是show页面打不开。

错误来了:

Cannot access protected property myname\myextension\Domain\Model\Country::$name

我没看错。在列表页面上,我通常使用国家名称。在显示页面上,我根本不使用它。因此,为什么这会导致问题是没有意义的。

这是我的 Show.html

<div class="card">
<h5 class="card-header" style="text-align: center">
{house.name}
</h5>
<div class="card-body" style="text-align: center">
<p class="card-text">
<f:link.external uri="{house.link}" target="_blank">{house.link}</f:link.external>
</p>
<h2>Rooms</h2>
<ul>
<f:for each="{house.room}" as="room">
<li>{room.name}</li>
</f:for>
</ul>
</div>
</div>
<f:link.action action="list" class="btn btn-primary">
BACK
</f:link.action>

我的 Controller

class HouseController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController
{
............
............
/**
* @param House $house
*/
public function showAction(House $house)
{
$this->view->assign('house', $house);
}

如前所述,完整代码在版本 9 上运行良好,在版本 10 中肯定存在一些问题。

编辑:这是我的国家模型

class Country extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{

/**
* Country Name
*
* @var string
* @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty")
*/
protected $name = '';

/**
* Returns the name
*
* @return string $name
*/
public function getName()
{
return $this->name;
}

/**
* Sets the name
*
* @param string $name
* @return void
*/
public function setName($name)
{
$this->name = $name;
}
}

这里是我的房屋模型(不是所有行):

class House extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
/**
* __construct
*/
public function __construct()
{

//Do not remove the next line: It would break the functionality
$this->initStorageObjects();
}
/**
* Countrie House
*
* @var \myname\myextension\Domain\Model\Country
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
*/
protected $country = null;

/**
* Returns the country
*
* @return \myname\myextension\Domain\Model\Country $country
*/
public function getCountry()
{
return $this->country;
}

/**
* Sets the country
*
* @param \myname\myextension\Domain\Model\Country $country
* @return void
*/
public function setCountry(\myname\myextension\Domain\Model\Country $country)
{
$this->country = $country;
}
}

最佳答案

问题是您正在使用 @TYPO3\CMS\Extbase\Annotation\ORM\Lazy 与模型建立直接关系。@TYPO3\CMS\Extbase\Annotation\ORM\Lazy注解有助于ObjectStorage使用,不建议直接用于其他模型。

关于typo3 - 从 TYPO3 v9 升级到 v10 后 : Show Pages no longer work (Cannot access protected property),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65001265/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com