在Yii 1.0框架中,如何知道renderPartial是否失败?假设$ information拥有一个仅在'detail / submitForm'中运行内容的关联数组。参见下面的示例:
$this->renderPartial('detail/submitForm', array('information' => $information));
答案 0 :(得分:1)
我想您可以将其包装在try / catch块中并使用一个标志变量,如下所示:
// flag variable to hold renderPartial's status, set to true initially
$renderSuccess = true;
try {
$this->renderPartial('detail/submitForm', array('information' => $information));
}
catch (Exception $ex) {
$renderSuccess = false;
}