Domanda

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?

È stato utile?

Soluzione

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.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top