本文整理匯總了PHP中Pessoa::listByFilter方法的典型用法代碼示例。如果您正苦於以下問題:PHP Pessoa::listByFilter方法的具體用法?PHP Pessoa::listByFilter怎麽用?PHP Pessoa::listByFilter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Pessoa
的用法示例。
在下文中一共展示了Pessoa::listByFilter方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dadosPessoaByNome
/**
* Exemplo de serviço a ser usado por programas offline.
*/
public function dadosPessoaByNome()
{
try {
$db = $this->getDatabase('exemplos');
try {
$transaction = $db->beginTransaction();
$pessoa = new Pessoa();
$this->data->result = $pessoa->listByFilter($this->data)->asQuery()->getResult();
$transaction->commit();
} catch (\Exception $e) {
// rollback da transação em caso de algum erro
$transaction->rollback();
$this->data->error = true;
$this->data->result = $e->getMessage();
}
} catch (\Exception $e) {
$this->data->error = true;
$this->data->result = $e->getMessage();
}
$this->renderJSON();
}
示例2: lookup
public function lookup()
{
$model = new Pessoa();
$this->data->query = $model->listByFilter($this->data->filter)->asQuery();
$this->render();
}
示例3: formNew
public function formNew()
{
$pessoa = new Pessoa($this->data->id);
$this->data->options = $pessoa->listByFilter($filter)->asQuery()->chunkResult(0, 1);
$this->render();
}