0

我通过控制台烘焙了模型、控制器、视图。然后我更改了 View/xxx/index.ctp 的内容,但更改未提交到网页。

知道有什么问题吗?

编辑:没有使用缓存


查看/日志/index.ctp

<div class="logs index">
    <h2><?php echo __('SystemLogs');?></h2>
    <table cellpadding="0" cellspacing="0">
    <tr>    
            <th><?php echo $this->Paginator->sort('isError');?></th>
            <th><?php echo $this->Paginator->sort('id');?></th>
            <th><?php echo $this->Paginator->sort('timestamp');?></th>
            <th><?php echo $this->Paginator->sort('category');?></th>
            <th><?php echo $this->Paginator->sort('action');?></th>
            <th><?php echo $this->Paginator->sort('detail');?></th>

    </tr>
    <?php

    foreach ($logs as $log): ?>
    <tr>
        <td>
            <?php 
            if (($log['Log']['isError'] == 1){
                echo h("ERR");
            }else{
                echo h("NFO");
            }

        ?>&nbsp; </td>

        <td><?php echo h($log['Log']['id']); ?>&nbsp;</td>
        <td><?php echo h($log['Log']['timestamp']); ?>&nbsp;</td>
        <td><?php echo h($log['Log']['category']); ?>&nbsp;</td>
        <td><?php echo h($log['Log']['action']); ?>&nbsp;</td>
        <td><?php echo h($log['Log']['detail']); ?>&nbsp; <br>
            (User: <?php echo h($log['Log']['userID']); ?>)<br>
            (PersID: <?php echo h($log['Log']['PersonalID']); ?>)
        </td>

    </tr>
<?php endforeach; ?>
    </table>
    <p>
    <?php
    echo $this->Paginator->counter(array(
    'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}')
    ));
    ?>  </p>

    <div class="paging">
    <?php
        echo $this->Paginator->prev('< ' . __('previous'), array(), null, array('class' => 'prev disabled'));
        echo $this->Paginator->numbers(array('separator' => ''));
        echo $this->Paginator->next(__('next') . ' >', array(), null, array('class' => 'next disabled'));
    ?>
    </div>
</div>

模型/Log.php

<?php
App::uses('AppModel', 'Model');
/**
 * Log Model
 *
 */
class Log extends AppModel {
/**
 * Display field
 *
 * @var string
 */

    var $order = "Log.timestamp desc";
    public $displayField = 'detail';
}

控制器/LogsController.php

<?php
App::uses('AppController', 'Controller');
/**
 * Logs Controller
 *
 */

class LogsController extends AppController {

/**
 * Scaffold
 *
 * @var mixed
 */
    var $name = "Logs";
    public $scaffold;


}
4

2 回答 2

1

你在里面没有index()动作LogsController

您可以创建一个像:

public function index() {
    $this->Log->recursive = 0;
    $this->set('logs', $this->paginate());
}
于 2012-07-02T15:22:56.867 回答
1

删除该public $scaffold;行,您的更改将生效。脚手架意味着蛋糕会为你生成代码。

于 2012-07-02T15:31:29.830 回答