我想通过 aloha 编辑器动态传递参数,我在 .yaml 上有这样的选择框
properties:
events:
type: string
ui:
label: 'Events'
reloadIfChanged: TRUE
inspector:
group: 'document'
editor: 'TYPO3.Neos/Inspector/Editors/SelectBoxEditor'
editorOptions:
dataSourceUri: 'events/list'
在 .ts2 文件上我使用这个
prototype(Festival.Backend:Events) < prototype(TYPO3.Neos:Plugin) {
package = 'Festival.Backend'
controller = 'Events'
action = 'ast_view'
artist = ${q(node).property('events')}
}
在本教程中http://docs.typo3.org/neos/TYPO3NeosDocumentation/Appendixes/NeosTypoScriptReference.html# 它说我可以使用
argumentNamespace:
[key]:
我的问题是如何将节点属性中的“艺术家”值添加到控制器操作中?像这样的东西
public function ast_viewAction($artist) {
$this->view->assign('artist', $artist);
}
感谢您的关注
编辑:感谢Aske Ertmann解决,将我的功能更改为此
public function ast_viewAction() {
$events_artist = $this->request->getInternalArgument('__artist');
$this->view->assign('artist', $artist);
}