gpt4 book ai didi

frameworks - Phalcon分页器错误: Syntax error, unexpected EOF

转载 作者:行者123 更新时间:2023-12-03 08:30:01 25 4
gpt4 key购买 nike

我的问题是,每次我单击 View 中的分页器链接时, Controller 都会向我返回此错误:

语法错误,意外的EOF

这是什么? EOF?

我的 Controller :

$domicilios = Domicilios::find();

$paginator = new \Phalcon\Paginator\Adapter\Model(
array(
"data" => $domicilios,
"limit"=> 5,
"page" => $currentPage
)
);

$pagina = $paginator->getPaginate();

$this->view->setVar("estado", $estado);
$this->view->setVar("pagina", $pagina);

模型Domicilios中的内容返回正确,但是为什么分页器不断返回此错误?

提前致谢!

最佳答案

EOF是文件末尾。可能有几个问题。首先,如果您将此文件上传到服务器,则上传过程可能存在问题,并且文件未完全上传,并且文件尾(EOF)断了。

尝试将您的php文件转换为utf8。您可以使用notepad++和许多其他程序来做到这一点。

这是我的工作分页:

    $page = $this->request->get('page', 'int', 1);
$this->view->page = $page;
if ($page < 1) {
$page = 1;
}
$user = $this->session->get('auth');
$questions = Model_UserQuestion::find(array(
'user_id=:user_id:',
'bind' => array('user_id' => $user['id']),
"order" => "id DESC",
));

// Create a Model paginator, show 10 rows by page starting from $currentPage
$paginator = new \Phalcon\Paginator\Adapter\Model(
array(
"data" => $questions,
"limit" => $this->config->application->itemsPerPage,
"page" => $page
)
);
$page = $paginator->getPaginate();
$this->view->questions = $page->items;

请注意,要获取物品,您必须使用以下命令:
$page->items

关于frameworks - Phalcon分页器错误: Syntax error, unexpected EOF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21020355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com