レンダリングされたアクションでプロパティ「html」を持つjsonオブジェクトを返す必要があります。Phalcon vew をネイティブに使用することは可能ですか?
例:
$posts = NewsPost::find(['limit' => 10]);
$view = new Phalcon\Mvc\View();
$view->setVar('posts', $posts);
$view->setMainView('news/posts'); // not sure if this is correct
// retrieve some data ...
$response = [
'html' => $view->render(),
'somedata' => 'somevalues',
....
];
PS phalcon php フレームワークに関する質問: http://docs.phalconphp.com/en/latest/api/Phalcon_Mvc_View.html