문제

Hi i wont render view with anchor location - http://example.com/index.php#top

may be like this:

$this->render('index', ['data' => $data], 'anchor'=>'top');

Any ideas?

도움이 되었습니까?

해결책

When you call render the url is already set because you are in the controller (or the view). So you can't add an anchor to the url at this time.

You must set the anchor before the controller is called.To do it you can set an anchor when you create the url:

$this->createUrl('controller/action', array('#' => 'the-anchor'));

You could also use redirect to redirect the visitor to the page with the anchor

$this->redirect(array('controller/action', array('#' => 'the-anchor')));

but I think that set the anchor when you create the url is the best way to achieve what you want.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top