0

我编写了一个使用 Cake-Shell 方法“success()”的 Cake-Shell,但这被声明为未定义。我在网上找不到任何描述该问题的线程。我可以说外壳在几周前确实运行良好。

方法调用:

$this->success('success', array());

我通过在我的 Windows-CLI 中调用 shell

cake ImportItems

并且它显然会运行它,但在应该触发 $this->success() 时会引发错误:

致命错误:在第 29 行的 D:\xampp\htdocs\myCake\app\Console\Command\ImportItemsShell.php 中调用未定义的方法 ImportItemsShell::success()

这是我的外壳代码

require_once('libraries/Ini.php');
class ImportItemsShell extends AppShell {

/**
 * Main fn
 */
public function main() {
    $this->importItems();
}

/**
 * Get called by Cron
 */
protected function importItems() {
    $Shop= new Shop(SHOP_DB); 
    $items = Api::getItems(true);
    $mysql = MySQL::getInstance();
    $res = array();

    if(is_array($items) && ($items['status'] == Api::STATUS_OK)) {
        $Shop->importItems($items['values']);
        $this->success('success', $items['values']);
    } else {
        $this->error('invalid_item_response', array());
    }
}
}
4

1 回答 1

1

Shell::success()错误是正确的, Cake 2.x中没有方法。与可以写入stderrusingShell::error()Shell::err()的错误相比,“成功”消息将简单地写入stdoutusing Shell::out()

也许只是您的错误报告设置发生了变化?

有关更多信息,请参阅http://book.cakephp.org/2.0/en/console-and-shells.html

于 2013-10-30T12:21:25.073 回答