我正在尝试三个小时来解决问题(Symfony 2.2)但我没有找到任何解决方案。我不知道如何在contentpage中写一个页面的url:
$('#container_sub_ejob').scrollPagination({
'contentPage': '/tts/list',
.......
});
在我的路由中写道:
tts_show:
pattern: /tts/list
defaults: { _controller: bgsBundle:bgs:show }
和控制器:
public function showAction()
{
return $this->render('bgsBundle:bgss:all_content.php');
}