문제

Using CakePHP 1.3 there are named parameters in the URL like .../name:value/... These are used for example by pagination links .../page:2/key:date/sort:desc/...

How to generate links with HtmlHelper::link() adding/deleting such named parameters from the current URL?

Basically I want create links to add/remove/modify the category:ID named parameter in the current URL. It must not touch the URL, anchor, other named parameters, GET parameters in the URL.

Or how can I pass named parameters to HtmlHelper::link()?

도움이 되었습니까?

해결책

link('link text', array('controller' => 'something', 'action' => 'foo', 'category' => $id))

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