TYPO3 showAction函数 – 显示简单网站

huangapple go评论61阅读模式
英文:

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

&lt;f:for each=&quot;{datas}&quot; as=&quot;data&quot;&gt;
			&lt;tr&gt;
				&lt;td&gt;
					&lt;f:link.action action=&quot;show&quot; arguments=&quot;{uid: data.uid}&quot;&gt;{data.bezeichnung}&lt;/f:link.action&gt;
				&lt;/td&gt;
				&lt;td&gt;{data.uid}&lt;/td&gt;
			&lt;/tr&gt;
		&lt;/f:for&gt;

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:

&lt;div class=&quot;action_fields&quot;&gt;
	&lt;input type=&quot;submit&quot; value=&quot;Zur&#252;ck&quot;&gt;
&lt;/div&gt;

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-&gt;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.

huangapple
  • 本文由 发表于 2023年4月13日 22:26:18
  • 转载请务必保留本文链接:https://go.coder-hub.com/76006611.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定