如何使用打字稿发送 HTTP 状态代码?
当满足某些条件时,我想向用户发送“403 Forbidden”HTTP 状态代码,但我在打字稿中找不到任何修改 HTTP 标头的可能性。我是否遗漏了一些东西,或者这对于打字稿来说真的不可能吗?
我正在使用 Typo3 4.5.6。
When certain conditions meet I'd like to send the user a "403 Forbidden" HTTP status code, but I couldn't find any possibility in typoscript to modify the HTTP header. Am I missing something or is this really impossible with typoscript?
I am using Typo3 4.5.6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用打字稿发送 HTTP 标头。在您的情况下,这将是:
唯一的问题是需要停止执行任何以下代码,但打字稿不提供 exit() 函数或类似函数。因此,最简单的方法是使用 USER_INT 函数:
而文件 user_httpheaders.php 包含:
It is possible to send HTTP headers with typoscript. In your case this would be:
The only problem is that the execution of any following code needs to be stopped but typoscript does not offer an exit() function or similar. So the easiest way is to use a USER_INT function:
Whereas the file user_httpheaders.php contains: