英文:
TYPO3 showAction Function - show simple site
问题
我正在为TYPO3开发一个扩展。在List.html文件中,我已经添加了一个表格,它创建了一个URL。
<f:for each="{datas}" as="data">
<tr>
<td>
<f:link.action action="show" arguments="{uid: data.uid}">{data.bezeichnung}</f:link.action>
</td>
<td>{data.uid}</td>
</tr>
</f:for>
到目前为止,一切都正常。
现在我想添加一个showAction控制器,它应该显示一个简单的Show.html文件。Show.html文件如下:
<div class="action_fields">
<input type="submit" value="Zurück">
</div>
稍后我会在其中放入一些数据,但首先只想让网站显示出来。
我的控制器中有这个函数:
public function showAction() {
return $this->htmlResponse();
}
每次我点击链接时都会出现错误消息:糟糕,发生了错误!代码:202304131415135166b57f
有人能帮我解释为什么吗?
英文:
I am working on an extension for typo3.
On the List.html file I have input a table, which creates an URL
<f:for each="{datas}" as="data">
<tr>
<td>
<f:link.action action="show" arguments="{uid: data.uid}">{data.bezeichnung}</f:link.action>
</td>
<td>{data.uid}</td>
</tr>
</f:for>
So far it's working fine.
Now I want to add a showAction Controller, which should show a simple Show.html file. The Show.html file looks like this:
<div class="action_fields">
<input type="submit" value="Zurück">
</div>
Later I will put some data in it but first of all just want the site to appear.
My Controller has this function in it:
public function showAction() {
return $this->htmlResponse();
}
Everytime I click on a link I just got: Oops, an error occurred! Code: 202304131415135166b57f
Can someone help me why?
答案1
得分: 0
问题可以通过在ext_localconf.php文件中首先允许列表操作来解决。
为所有需要的其他人发布这个答案。
英文:
Problem could be solved with allowing the list action first in the ext_localconf.php file.
Posting this anwser for all other people who need it.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论