cakephp 抑制所有标题和所有数据
我正在尝试创建一个可订阅的网络日历。如果我直接链接到该文件,该文件就可以工作。但是当用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保将
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.