cakephp 抑制所有标题和所有数据

发布于 2024-11-08 01:48:17 字数 167 浏览 2 评论 0原文

我正在尝试创建一个可订阅的网络日历。如果我直接链接到该文件,该文件就可以工作。但是当用 CAKEPHP 生成时,即使布局为空白,日历程序也会说数据无效。我猜有一些隐藏的标头、数据,以及 cakephp 在后台发送的东西。有什么办法让 cakephp 只发送实际的文件吗?

我无法订阅的原因还有其他想法吗?

I am trying to create a subscribable web cal. The file works, if I link to it directly. But when generated out of CAKEPHP, even with a blank layout, the calendar program says the data is invalid. I am guessing there are some hidden headers, data, something that cakephp is sending in the background. Any way to have cakephp just send the actual file?

Any other ideas why I can't subscribe?

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

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

发布评论

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

评论(1

幽梦紫曦~ 2024-11-15 01:48:17

确保将 Configure::Write('debug',0); 放入控制器中返回日历数据的操作中。然后确保您调用的布局仅包含 并且在控制器中的同一操作中使用 $this->layout = 'yourlayout'; 中没有其他内容。

Make sure that you put Configure::Write('debug',0); in the action in your controller that returns the data for the calendar. And then make sure you call a layout that ONLY has <?php echo $content_for_layout; ?> and nothing else in it using $this->layout = ‘yourlayout’; in that same action in the controller.

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