помощник rss не генерирует index.rss - PullRequest
0 голосов
/ 22 февраля 2012

У меня проблема с генерацией RSS.Я выполнил все шаги http://book.cakephp.org/1.3/en/view/1460/RSS,, но когда я пытаюсь в URL, мой index.rss показывает мне только мою индексную страницу не в формате xml.

это мой индекс post_Controller:

var $components = array('Session','RequestHandler');
var $helpers = array('Html','Form','Time','Text');

function index() {
if( $this->RequestHandler->isRss() ){ 
$posts = $this->Post->find('all', array('limit' => 20, 'order' => 'Post.created DESC'));     
$this->set(compact('posts'));
}
$this->set('title_for_layout', 'mi blog');
$this->Post->recursive = 1;
$this->set('posts', $this->paginate());

}

это мой макет в app / views / layouts / rss / default.ctp:

 echo $this->Rss->header();
 if (!isset($documentData)) {
 $documentData = array();
 }
 if (!isset($channelData)) {
 $channelData = array();
 }
 if (!isset($channelData['title'])) {
 $channelData['title'] = $title_for_layout;
 } 
 $channel = $this->Rss->channel(array(), $channelData, $content_for_layout);
 echo $this->Rss->document($documentData,$channel);

это вид в app / views / posts / rss / index.ctp

    $this->set('documentData', array(
    'xmlns:dc' => 'http://purl.org/dc/elements/1.1/'));

    $this->set('channelData', array(
    'title' => __("Articles", true),
    'link' => $this->Html->url('/', true),
    'description' => __("Articulos mas recientes.", true),
    'language' => 'en-us'));



    // content
    foreach ($posts as $post) {
        $postTime = strtotime($post['Post']['created']);

        $postLink = array(
            'controller' => 'posts',
            'action' => 'view',

            $post['Post']['id']);
        // You should import Sanitize
        App::import('Sanitize');
        // This is the part where we clean the body text for output as the description 
        // of the rss item, this needs to have only text to make sure the feed validates
        $bodyText = preg_replace('=\(.*?\)=is', '', $post['Post']['body']);
        $bodyText = $this->Text->stripLinks($bodyText);
        $bodyText = Sanitize::stripAll($bodyText);
        $bodyText = $this->Text->truncate($bodyText, 400, array(
            'ending' => '...',
            'exact'  => true,
            'html'   => true,
        ));

        echo  $this->Rss->item(array(), array(
            'title' => $post['Post']['title'],
            'link' => $postLink,
            'guid' => array('url' => $postLink, 'isPermaLink' => 'true'),
            'description' =>  $bodyText,
            'pubDate' => $post['Post']['created']));
    }

что может быть проблемой ... Также я поместил компонент в app_controller.php var $ components = array ('Auth', 'Session', 'RequestHandler');но ничего не происходит index.rss - это то же самое из posts / index

Ответы [ 2 ]

1 голос
/ 19 ноября 2015

В действии контроллера.Вы должны добавить

 $this->response->type("xml");

в конце.

1 голос
/ 24 февраля 2012

Похоже, вы не возвращаете представление RSS в контроллере индекса. Обновите секцию RSS функции index, чтобы она возвращала представление rss:

function index() {
  if( $this->RequestHandler->isRss() ){ 
    $posts = $this->Post->find('all', array('limit' => 20, 'order' => 'Post.created DESC'));     
    return $this->set(compact('posts'));
  }
// ...snip...
}

UPDATE

Так Chrome обрабатывает макет. Я знаю, это ужасно. FireFox и IE обрабатывают макет RSS намного лучше. Но вы можете установить расширение RSS Layout для Chrome, и оно отформатирует его так же.

https://chrome.google.com/extensions/detail/nlbjncdgjeocebhnmkbbbdekmmmcbfjd

...