does not completely redirect

0

I have a link, I want to redirect to the Investigation Values list.

a(id='add-user', href="/evaluacion/listaEvaluacionesInvestigacion", 
class='btn btn-primary') agregar los usuarios marcados 

and the router is

router.get('/listaEvaluacionesInvestigacion', function (req, res) { console.log('ENTRA A LA FUNCION'); res.render('./evaluacion/listaEvaluaciones',{}); }); 

shows the message of console.log (), what it does is change the url but it does not show the content of the list Evaluations

BUT it is displayed when I update the page (because it is updated since the url changed)

How do I solve it? I want to show the content of the page without refreshing *

    
asked by hubman 27.12.2017 в 03:07
source

0 answers