这是我在这里的第一个问题所以你好! 我的问题: 我正在练习一个非常简单的Extbase扩展,并使用FlexForm来获得三个公式字段。其中一个称为“代码”,应该转到EmbedderController.php,然后转到查看器List.html。
我尝试了很多并检查了我能找到的所有教程。但不知何故,我真的不明白如何将FlexForm值“代码”放入我的控制器中。 无论我做什么,我都没有任何价值或空页。
这是我的FlexForm:Embedder.xml
<T3DataStructure>
<meta type="array">
<langChildren>0</langChildren>
<langDisable>1</langDisable>
</meta>
<ROOT>
<type>array</type>
<el>
<settings.code>
<TCEforms>
<label>Video Code</label>
<config>
<type>input</type>
<size>20</size>
<max>30</max>
<eval>trim</eval>
</config>
</TCEforms>
</settings.code>
<settings.width>
<TCEforms>
<exclude>1</exclude>
<label>Breite in Pixel</label>
<config>
<type>input</type>
<size>10</size>
<max>10</max>
<eval>trim</eval>
</config>
</TCEforms>
</settings.width>
<settings.height>
<TCEforms>
<exclude>1</exclude>
<label>Höhe in Pixel</label>
<config>
<type>input</type>
<size>10</size>
<max>10</max>
<eval>trim</eval>
</config>
</TCEforms>
</settings.height>
</el>
</ROOT>
</T3DataStructure>
这是我的EmbedderController.php
<?php
namespace HhuMediathek\Hhumediathek\Controller;
/**
* EmbedderController
*/
class EmbedderController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController {
/**
* embedderRepository
*
* @var \HhuMediathek\Hhumediathek\Domain\Repository\EmbedderRepository
* @inject
*/
protected $embedderRepository = NULL;
/**
* action list
*
* @return void
*/
public function listAction() {
$this->settings['code'];
}
}
这是查看器List.html
<f:layout name="Default" />
<f:section name="main">
<iframe width='570' height='321' style='width: 570px; height: 321px; border: 1px solid #ccc;' src='//xxx.de/embed/{code}' frameborder='0' allowfullscreen></iframe>
</f:section>
答案 0 :(得分:10)
好的,我可以自己搞清楚。对于那些与我一样的问题挣扎的人:
我的错误是,我根本不需要控制器中的$this->settings['code'];
行,而是在查看器List.html中写{settings.code}
而不仅仅是{code}
。它与我在我的书和一些教程中读到的完全不同,但这确实有效。
答案 1 :(得分:1)
缺少视图参数的赋值。因此改变
public function listAction() {
$this->settings['code'];
}
到
public function listAction() {
$this->view->assign('code', $this->settings['code']);
}
这种方式{/ 1}}应该在视图中可用。
答案 2 :(得分:0)
我不想被限制在settings.*
。我在控制器中使用以下脚本。
/** @var ContentObjectRenderer $content */
$content = $this->configurationManager->getContentObject();
$flexFormString = $content->data['pi_flexform'];
$flexFormRaw = GeneralUtility::xml2array($flexFormString);
if (is_callable([FlexformUtilities::class,'arrayFlatten'])) {
$flexFormSimple = FlexformUtilities::arrayFlatten( $flexFormRaw); // second Param is ['data','sDEF','lDEF','vDEF']
$referenceUidsList = $flexFormSimple['referenceList'];
} else {
$referenceUidsList = (int)$flexFormRaw['data']['sDEF']['lDEF']['referenceList']['vDEF'];
}
Utilities-Class 包含以下 flattenArray-method
protected const DEFAULT_FLATTEN_KEYS = ['data','sDEF','lDEF','vDEF'];
/**
* https://stackoverflow.com/questions/1319903/how-to-flatten-a-multidimensional-array
*
* @param array $listFlatKeys
* @param $array
* @return array
*/
public static function arrayFlatten( $array, &$listFlatKeys = self::DEFAULT_FLATTEN_KEYS)
{
if (!is_array($array)) {
return $array;
}
if (count($array) === 1) {
$key = array_key_first($array);
$value = self::arrayFlatten( $array[$key],$listFlatKeys);
if (in_array($key, $listFlatKeys)) {
return $value;
} else {
return [$key => $value];
}
}
$return = [];
foreach ($array as $key => $value) {
if (in_array($key, $listFlatKeys)) {
$return[] = self::arrayFlatten( $value, $listFlatKeys);
} else {
$return[$key] = self::arrayFlatten( $value, $listFlatKeys);
}
}
return $return;
}
我在类似 Alias 的视图助手中使用它来获取前端弹性域的信息。