如何使用路由管理会话

时间:2016-12-30 11:53:38

标签: jquery node.js mongodb handlebars.js

我们正在开发一个电子商务网站

进入主页时

弹出窗口应该如下图所示.. From the three options we have to select any one then entire site the products should be displayed of that classificaton only

现在,当点击任意一个按钮时,页面将被重定向到主页,用户只能根据该分类查看产品,并且不应显示弹出窗口......直到会话继续。

以下是用于显示弹出窗口的html和j-query代码

 <div class="row pop-up">
<div class="box small-6 large-centered"> <a href="#" class="close-button">&#10006;</a>
 <h3 style="color:lightgreen;font-size: 35px">Choose Your Classification</h3>
 <br>.
<p> <button class="button" ><a href="/shop/classification/choosen?class=comfort" style="color:white;font-size:20px">Comfort</a></button>
<br>

豪华       

    方便       

          j查询代码是

$(function() {
 $('.pop-up').hide();
 $('.pop-up').fadeIn(1000);

  $('.close-button').click(function (e) { 

  $('.pop-up').fadeOut(700);
  $('#overlay').removeClass('blur-in');
  $('#overlay').addClass('blur-out');
  e.stopPropagation();

});

现在点击按钮时,它会重定向到主页,但弹出窗口没有隐藏

现在路由代码是

    router.get('/shop/classification/choosen',function(req,res){
  var url_parts = url.parse(req.url, true);
var query = url_parts.query;
var malllll= req.query.class;
req.session.class = req.query.class;
var jj=req.session.class;
console.log("8888888888888"+malllll)

console.log("edjkbwe"+jj)

    }) ;

现在我的疑问是如何在每个路由代码中反映该分类

0 个答案:

没有答案