更新为了让一些人更清楚地了解正在发生的事情,我的页面没有显示文档树(这是我第一次看到这个)。只有一长行我的 xml 内容,没有任何 xml 元素/标签。
我按照本教程在 cakephp 中创建动态站点地图。本教程编写于 2008 年,我(继承)正在使用 cakephp 1.3 应用程序(我假设本教程对 1.3 有效?我查看了其他一些在 2009 年和 2010 年几乎使用相同代码的人。 ) 除了我的一个查询没有产生任何结果这一令人痛心的事实之外,当我导航到 mysite.com/sitemap.xml 时,我的输出是这样的:
http://www.site.com/ daily 1.0 http://www.site.com/gulf-coast-finest/3 2012-10-01T19:00:00Z weekly 0.9 http://www.site.com/gulf-coast-finest/4 2012-10-01T19:00:00Z weekly 0.9
当我“查看源代码”时,我得到了正确格式化的 xml(除了我缺少关键数据),如下所示:
<?xml version="1.0" encoding="UTF-8" ?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.site.com/</loc>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<!-- posts-->
<url>
<loc>http://www.site.com/gulf-coast-finest/3</loc>
<lastmod>2012-10-01T19:00:00Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<url>
<loc>http://www.site.com/gulf-coast-finest/4</loc>
<lastmod>2012-10-01T19:00:00Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
</urlset>
....
我想知道为什么没有空格或 xml 标记,除非我查看源代码。这是我的路线文件中的相关代码:
Router::parseExtensions('xml');
Router::connect('/sitemap', array('controller' => 'sitemaps', 'action' => 'index'));
我的 app/views/layouts/xml/default.ctp 文件:
<?php
header("content-type: text/xml");
echo $this->Xml->header();
echo $content_for_layout;
?>
我的 app/views/sitemaps/xml/index.ctp 文件:
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc><?php echo Router::url('/',true); ?></loc>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<!-- posts-->
<?php foreach ($static as $s):?>
<url>
<loc><?php echo Router::url('/gulf-coast-finest/'.$s['Article']['Article.link_txt'].'/'.$s['Article']['id'],true); ?></loc>
<lastmod><?php echo $time->toAtom('2012-10-01 19:00:00'); ?></lastmod>
<changefreq>weekly</changefreq>
<priority>0.9</priority>
</url>
<?php endforeach; ?>
</urlset>
和我明显完成的混乱控制器:
<?php
class SitemapsController extends AppController{
var $name = 'Sitemaps';
var $uses = array('Category', 'Listing', 'Article', 'Location');
var $helpers = array('Time');
var $components = array('RequestHandler');
function beforeFilter() {
//debug logs will destroy xml format, make sure were not in drbug mode
Configure::write ('debug', 0);
}
function index (){
$this->RequestHandler->respondAs('xml');
$this->viewPath .= '/xml';
$this->layoutPath = 'xml';
$a=$this->Article->find('all', array('fields'=>array('Article.id', 'Article.link_txt')));
$this->set('static', $a);
}
}
?>
非常重要的缺失数据问题可能适合另一个问题。XML 文件是一行并且没有人类可见的标签,这不是我可以接受的。我想知道它为什么这样做