So i have a jsTree and am adding this a_attr to the node, but i would like to hide the query paramters in the url (clientId,satisfactionClient...), as it writes the entire content on there. I just have no idea how, because this is how i get my data to render the page from the jsTree
$aAttr = [
'href' => $this->router->generate('renderSuivi', [
'clientId' => $suivi->getCodeClient(),
'satisfactionClient' => $suivi->getSC(),
'nps' => $suivi->getNps(),
'compteRendu' => $suivi->getCR(),
'id' => $suivi->getId(),
]),
];
$node = [
'id' => $id,
'text' => $text,
'a_attr' => $aAttr,
];