cakephp requestHandler 检查 swf/flash

发布于 2024-08-16 00:22:09 字数 75 浏览 6 评论 0原文

有没有办法检查 cakePHP 操作是否从 swf/flash 电影中调用,就像使用 requestHandler 的 Ajax 一样?

Is there a way to check if a cakePHP action is being called from an swf/flash movie like there is for Ajax using the requestHandler?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酒儿 2024-08-23 00:22:09

将命名参数放入 Flash 请求的 URL 中:

例如。 http://www.example.com/controller/action/flash:true

在您的控制器(或 AppController)代码中检查此命名参数:

if (isset($this->params['named']['flash'])) {
    ...
}

Put a named parameter in the URL that Flash is requesting:

eg. http://www.example.com/controller/action/flash:true

Check for this named parameter in your controller (or AppController) code:

if (isset($this->params['named']['flash'])) {
    ...
}
假装不在乎 2024-08-23 00:22:09

我不相信是这样。更好的选择可能是创建仅在 Flash 应用程序中使用的离散控制器操作。

I don't believe so. A better option might be to create discrete controller actions that you only use from your Flash app.

莫相离 2024-08-23 00:22:09

不是我认为你的意思。 requestHandler 可以检测请求的类型,但我认为您正在寻找请求。可能值得尝试 getReferrer() 方法,但您最终可能需要向 swf 添加一个点击处理程序(如果它是您的并且您具有该访问权限)。

Not the way I think you mean. The requestHandler can detect the type of request, but I think you're looking for the request source. It might be worth trying the getReferrer() method, but you may end up needing to add a click handler to the swf (if it's yours and you have that access).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文