我用于T3后端在renderType = selectMultipleSideBySide中选择TCA类型
这里是TCA代码:
'features' => array(
'label' => 'Zusatz',
'config' => array(
'type' => 'select',
'renderType' => 'selectMultipleSideBySide',
'size' => 10,
'minitems' => 0,
'maxitems' => 999,
'items' => array(
array(
'Parkplätze',
'parking'
),
array(
'Freies Wlan',
'wlan'
),
)
)
),
它在后端工作正常!
但是,我现在如何正确阅读数据? 我现在不是域/模型的正确方法。
/**
* Features
*
* @var string
*/
protected $features = '';
/**
* Returns the features
*
* @return string $features
*/
public function getFeatures() {
return $this->features;
}
/**
* Sets the features
*
* @param string $features
* @return void
*/
public function setFeatures($features) {
$this->features = $features;
}
调试代码推出:features => 'parking,wlan' (12 chars)
a每个人都不工作:
<f:for each="{newsItem.features}" as="featuresItem">
{featuresItem}<br />
</f:for>
感谢您的帮助!
答案 0 :(得分:4)
你需要用逗号分解字符串,这样你就可以在循环中迭代它们,至少有两种方法:一种是自定义ViewHelper,第二种(下面描述) transient模型中的 字段,当您获得要素的ID时,您还需要将其“翻译”为人类可读的标签......
在包含这些功能的模型中,添加瞬态字段和 getter,如下例所示:( 当然您可以在注释中删除这些无聊的注释,但必须才能使@var
行保持正确的类型!):
/**
* This is a transient field, that means, that it havent
* a declaration in SQL and TCA, but allows to add the getter,
* which will do some special jobs... ie. will explode the comma
* separated string to the array
*
* @var array
*/
protected $featuresDecoded;
/**
* And this is getter of transient field, setter is not needed in this case
* It just returns the array of IDs divided by comma
*
* @return array
*/
public function getFeaturesDecoded() {
return \TYPO3\CMS\Core\Utility\GeneralUtility::trimExplode(',', $this->features, true);
}
如前所述,您需要为ID获取人类可读标签,即使您不构建多语言页面翻译文件也非常有用,只需在文件typo3conf/ext/yourext/Resources/Private/Language/locallang.xlf
中为每个功能添加项目即可有你的TCA选择:
<trans-unit id="features.parking">
<source>Parkplätze</source>
</trans-unit>
<trans-unit id="features.wlan">
<source>Freies Wlan</source>
</trans-unit>
因为你可以看到点后的反转单位的id与TCA中你的功能的键相同,
最后,你需要在视图中使用它来迭代瞬态字段而不是原始字段:
<f:for each="{newsItem.featuresDecoded}" as="feature">
<li>
Feature with key <b>{feature}</b>
it's <b>{f:translate(key: 'features.{feature}')}</b>
</li>
</f:for>
在模型中添加新字段(即使它们是短暂的)并在本地化文件中添加或更改条目后,您需要清除6.2+中的系统缓存!,此选项在安装中可用工具(但您可以通过 flash图标下的UserTS设置它。)
注意:使用自定义ViewHelper可以完成同样的事情,但IMHO瞬态字段更容易。