0

为什么 app_model.php 中的 afterSave() 总是在每次页面加载时触发?

class AppModel extends Model 
{
    public $cacheQueries = true;    
    var $actsAs = array('Containable');

    function __construct($id = false, $table = null, $ds = null) {
        parent::__construct($id, $table, $ds);
    }

    function afterSave($created) {
        // Is used for better workflow when saving data
        // Just for update
        if(!$created) {
            $_SESSION['redirect_update'] = true;
            $_SESSION['redirect_to']     = $_SESSION['form_referer'];
            debug('im always show on every page load!');
        }
    }

}
4

1 回答 1

1

刚刚检查了全新安装的 Cake。AppModel 不会afterSave在每次页面加载时触发。您的应用程序必须save在您的一个控制器中调用某个模型(可能是您的 AppController,因为它是为每个页面调用的,或者检查您的 beforeFilters)。

于 2011-01-05T18:25:22.083 回答