0
2つのプラグインを持つ1つの拡張があります。私はplugin1からplugin2に引数を渡します。1つのプラグインから別のプラグインに引数を渡す
私はplugin2でのコンテンツ要素が挿入されたページへのリンクを生成plugin1の見解で:私はこのようなテストパラメータを取得しようApplicationController
で
<f:link.action controller="ApplicationController" action="showFormAction" arguments="{test: 1}" pageUid="40">Link</f:link.action>
:
$this->request->getArgument('test');
をしかし、このエラーが発生する:
#1176558158
: An argument "test" does not exist for this request.
これを解決する方法はありますか? ?
https://github.com/TYPO3/TYPO3.CMS/blob/TYPO3_8-7/typo3/sysext/fluid/Classes/ViewHelpers/Link/ActionViewHelper.php#L55 – Daniel
速い応答のためのThx – user6800816