- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 TYPO3 7.6.11 并尝试调用 showAction()
时出现以下错误.
Validation failed while trying to call Vendor\Extension\Controller\MyController->showAction().
最佳答案
您可以调试验证结果或在模板中显示它们。
调试验证结果
如需调试,请查看 \TYPO3\CMS\Extbase\Mvc\Controller\ActionController
你的 Controller 扩展。你会找到方法callActionMethod()
处理验证结果的地方。
显示验证结果
要显示流体中的错误,请使用 ViewHelper <f:form.validationResults>
:
<f:form.validationResults>
<f:if condition="{validationResults.flattenedErrors}">
<ul class="errors">
<f:for each="{validationResults.flattenedErrors}" as="errors" key="propertyPath">
<li>{propertyPath}
<ul>
<f:for each="{errors}" as="error">
<li>{error.code}: {error}</li>
</f:for>
</ul>
</li>
</f:for>
</ul>
</f:if>
</f:form.validationResults>
关于typo3 - 尝试调用 showAction 时验证失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40572201/
我正在使用 TYPO3 7.6.11 并尝试调用 showAction() 时出现以下错误. Validation failed while trying to call Vendor\Extensi
我创建了一个 Extbase Extesion,我想对“showAction”进行 inore 验证。 我为我的模型“事件”定义了一个模型验证,并在我的“EventController”中的“show
我在网上阅读了很多关于我需要如何添加自己的命名空间才能在使用 v7 兼容性库时使操作栏正常工作的答案。此链接描述了此解决方案的答案: Android use namespace as prefix f
我是一名优秀的程序员,十分优秀!