if else conditions not working in ejs after I hosted using aws and nginx

0 votes

if else conditions working fine in the localhost but not working after I hosted.

const productDetails = async (req, res) => {
  try {
    userSession = req.session;
    const id = req.query.id;
    const products = await Product.find();
    const productData = await Product.findById({ _id: id });
    if (productData) {
      res.render("singleProduct", {
        isLoggedin,
        id: userSession.userId,
        product: productData,
        products: products,
      });
    } else {
      res.redirect("/home");
    }
  } catch (error) {
    console.log(error.message);
  }
};




<% if(id) { %>
    <%- include('../partials/userLoggedinHeader') %>
    <% }else { %>
    <%- include('../partials/userHeader') %>
    <% } %>


<% if(id){ %> 

<a class="primary-btn" onclick="addToCart('<%=product._id%>')">Add to Cart</a>
<a class="icon_btn" onclick="addToWishlist('<%=product._id%>')"><i class="lnr lnr lnr-heart"></i></a>

<% }else {%> 

<a class="primary-btn"  href="/addToCart?id=<%=product._id%>">Add to Cart</a>
<a class="icon_btn" href="/AddToWishlist?id=<%=product._id%>"><i class="lnr lnr lnr-heart"></i></a>

<% } %>

here I have rendered id and it is working fine in localhost but the second 'if' not working after I hosted using aws and nginx. Can someone tell me what's happening here?

Jan 14, 2023 in AWS by Tejashwini
• 3,820 points

edited Mar 4 30 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP