点击类似产品后尝试重新加载页面

时间:2016-12-14 15:15:06

标签: javascript jquery json

我从JSON文件中提取项目。我有一个名为“showProduct”的类,一旦点击它就会执行一个函数并在页面上显示项目信息。我试图稍后在类似产品的代码中再次调用此功能。我需要用新项目内容刷新页面。下面是我的代码,真的希望有人可以帮助我,我不知道我做错了什么。我没有包含JSON,但我希望通过查看类和我的代码,有人会知道为什么它不会工作。

function openNav() {
    document.getElementById("productsSideBar").style.width = "250px";
}

function closeNav() {
    document.getElementById("productsSideBar").style.width = "0";
}

 'use strict';
	 
	  $.ajax({
  		dataType: "jsonp",
  		url: '',
  		success: function(json){
		  
	  //check for window hash and display appropriate product category	
		  var currentHash = window.location.hash;
		  switch(currentHash) 
		  {
			  case '#tomatoes':
				   displayTomatoes(); 
				   break;
			  default:
			       displayAll();
				   break;
		  }
          
          //display all products function 
		  function displayAll() {
			  var categoryImage = '';
		  
			  $.each(json, function (i, item) {
				   if (item.itemBrandLetter == "C") {
						 categoryImage += '<div class="col-lg-3 col-md-4 col-sm-6 col-xs-12">' + '<a href="#"' + 'class="showProduct"' + 'data-itempageurl="' + item.itemName + '"' + 'data-itemgmo="' + item.itemGMOFree + '"' + 'data-itembpa="' + item.itemBPAFree + '"' + 'data-itemgluten="' + item.itemGlutenFree + '"' + 'data-itemimage="' + item.imageURL + '"' + 'data-itemname="' + item.itemName + '"' + 'data-itemoz="' + item.itemPackSize + '"' + 'data-itemdescription="' + item.itemDescription + '"' + 'data-itemupc="' + item.itemFullUPC + '">' + '<img class="img-responsive img-hover productImagesCategory" src="' + item.imageURL + '">' + '<h3>' + item.itemName + '</h3>' + '</a>' + '</div>';
				   }
			  });
			  
			  $('#imagesCategoryProducts').hide().html(categoryImage).fadeIn('slow');
			  
			  //show individual product function on click
			  $(".showProduct").click(function(event){
  
  				 //hide all current products
				 $('#productCategories').hide();
	
				 //get passed data from other function
				 var clickedItemName = '<h1>' + $(this).data('itemname') + '</h1>';
				 var clickedItemUPC = $(this).data('itemupc');
				 var clickedItemOZ = '<h2>' + $(this).data('itemoz') + '</h2>';
				 var clickedItemDescription = '<p>' + $(this).data('itemdescription') + '</p>';
				 var clickedItemImage = '<img class="img-responsive img-rounded center-block" src="' + $(this).data('itemimage') + '">';
				 var clickedItemGluten = $(this).data('itemgluten');
				 var clickedItemBPA = $(this).data('itembpa');
				 var clickedItemGMO = $(this).data('itemgmo');
				 var clickedItemPageURL = $(this).data('itempageurl');
				 
				 //check if clicked data equals correct item
				 $.each(json, function (i, item) {
				   if (item.itemName === clickedItemName) {
					  clickedItemName 
				   }
				   if (item.itemFullUPC === clickedItemUPC) {
					  clickedItemUPC
				   }
				   if (item.itemPackSize === clickedItemOZ) {
					  clickedItemOZ
				   }
				   if (item.itemDescription === clickedItemDescription) {
					  clickedItemDescription
				   }
				   if (item.imageURL === clickedItemImage) {
					  clickedItemImage
				   }
				   if (item.itemGlutenFree === clickedItemGluten) {
					  clickedItemGluten
				   }
				   if (item.itemBPAFree === clickedItemBPA) {
					  clickedItemBPA
				   }
				   if (item.itemGMOFree === clickedItemGMO) {
					  clickedItemGMO
				   }
				   
				   //assign window hash to each product
				   if (item.itemName === clickedItemPageURL) {
					  event.preventDefault();
					  clickedItemPageURL = clickedItemPageURL.replace(/\s/g, '');
					  window.location.hash = clickedItemPageURL; 
				   }
				 });
				 
				   //remove extra characters from UPC
				   var originalUPC = clickedItemUPC;
				   var strippedUPC = '<h2>' + originalUPC.slice(1, -1); + '</h2>'; 
	
				   //show individual product information
				   $('#productSocialShare').show();
				   $('#individualProduct').show();
				   $('#relatedProducts').show();   
				   
				   //append product information to appropriate DIV
				   $('#productTitle').html(clickedItemName);
				   $('#productUPC').html(strippedUPC);
				   $('#productOZ').html(clickedItemOZ);
				   $('#productDescription').html(clickedItemDescription);
				   $('#productImage').html(clickedItemImage);
				   
				   //check if gluten free is true and show image
				   if (clickedItemGluten == "Y") {
					   clickedItemGluten = '<img class="img-responsive img-rounded img-margin" src="../images/misc/gluten_free_test.jpg">';
					   $('#productGlutenFree').html(clickedItemGluten);
					   $('#productGlutenFree').show();
				   } else {	
					   $('#productGlutenFree').hide();
				   }
				   
				   //check if bpa free is true and show image
				   if (clickedItemBPA == "Y") {
					   clickedItemBPA = '<img class="img-responsive img-rounded img-margin" src="../images/misc/bpa_free_test.jpg">';
					   $('#productBPAFree').html(clickedItemBPA);
					   $('#productBPAFree').show();
				   } else {	
					   $('#productBPAFree').hide();
				   }
				   
				   //check if gmo free is true and show image
				   if (clickedItemGMO == "Y") {
					   clickedItemGMO = '<img class="img-responsive img-rounded img-margin" src="../images/misc/gmo_test.jpg">';
					   $('#productGMOFree').html(clickedItemGMO);
					   $('#productGMOFree').show();
				   } else {	
					   $('#productGMOFree').hide();
				   } 
				    
				   //show random recipe for each item
				   var url = '';
    			   $.getJSON(url, function(json) {
						var randomRecipe = json[Math.floor(Math.random() * json.length)];
						randomRecipe += '<div>' + '<a href="' + randomRecipe.recipePageURL + '">' + '<img class="img-responsive img-hover similarProductImagesCategory" src="' + randomRecipe.recipeImageCategoryURL + '">' + '</a>' + '<a href="' + randomRecipe.recipePageURL +'">' + '<h3 class="similarProductSubCategoryImgCaption">' + randomRecipe.recipeName + '</h3>' + '</a>' + '</div>';
    	 				$('#featuredRecipe').append(randomRecipe);					
				   });
				   
				   //show similar products 
				   var categoryItems = [];
				   $.each(json, function(i, item){
					  if(window.location.hash.indexOf('Tomatoes') >= 0) {
						  if(item.itemCommodity == '1120' && item.itemBrandLetter == "C") categoryItems.push(item);
					  }
					  if(window.location.hash.indexOf('Olive') >= 0) {
						  if(item.itemCommodity == '2120' && item.itemBrandLetter == "C") categoryItems.push(item);
					  }
				   });
				  
				   var similarProduct= '';
				   $.each(json, function(i,item){
					  similarProduct = categoryItems[Math.floor(Math.random()*categoryItems.length)];
					  similarProduct += '<div>' + '<a href="#" class="showProduct"' + '>' + '<img class="img-responsive img-hover similarProductImagesCategory" src="' + similarProduct.imageURL + '">' + '<h3 class="similarProductSubCategoryImgCaption">' + similarProduct.itemName + '</h3>' + '</a>' + '</div>';
				   });
				   $('#productSimilar').append(similarProduct); 
			  });    
			  closeNav();
		  }
		  
	   }
   });
});
<section>
  <div id="productsSideBar" class="sidenav">
    <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
    <a href="#" id="displayall"><h3>View All</h3></a>
    <a href="#" id="tomatoes">Tomatoes</a>
    <a href="#" id="sauce">Sauce</a>
    <a href="#" id="oliveoil">Olive Oil</a>
    <a href="#" id="redwinevinegar">Red Wine Vinegar</a>
    <a href="#" id="balsamicvinegar">Balsamic Vinegar</a>
    <a href="#" id="peppers">Peppers</a>
    <a href="#" id="artichokes">Artichokes</a>
    <a href="#" id="olives">Olives</a>
    <a href="#" id="beans">Beans</a>
    <a href="#" id="caperspignolinuts">Capers & Pignoli Nuts</a>
    <a href="#" id="specialties">Specialties</a>
    <a href="#" id="spices">Spices</a>
    <a href="#" id="fish">Fish</a>
    <a href="#" id="brothstockssoups">Broth, Stocks & Soups</a>
    <a href="#" id="breadcrumbs">Breadcrumbs</a>
    <a href="#" id="gratedcheese">Grated Cheese</a>
  </div>
</section>

<section id="productCategories"> 
	<div class="container-fluid">
    	<div class="row">
             <div class="col-lg-12">
             	<br>
                <span class="expandSidebar" onclick="openNav()">&#9776; Categories</span> 
             </div>
        </div>
        <div class="row">
             <div class="col-lg-12"> 
             	<div id="imagesCategoryProducts"></div> 
             </div>
        </div>
	</div>
</section>

<!-- Product Row Start -->     
<section id="individualProduct"> 
	<div class="container topmargin">
    	<div class="row">
             <div class="col-md-7 col-sm-6">
             	<!-- Product Title Div -->
             	<div id="productTitle"></div>
                <!-- Product UPC Div -->
                <div class="displayInlineBlock" id="productUPC"></div>
                <span class="displayInlineBlock"><h2>•</h2></span>
                <!-- Product OZ Div -->
                <div class="displayInlineBlock" id="productOZ"></div>
                <span class="displayInlineBlock"><h2>•</h2></span>
                <!-- Where to Buy Icon -->
                <div class="displayInlineBlock"><h3><a href="../where-to-buy.php"><span rel="popover" data-content="View Product Availability"><span class="fa-stack"><i class="fa fa-square fa-stack-2x"></i><i class="fa fa-map-marker fa-stack-1x fa-inverse"></i></span></span></a></h3></div>
                <hr>
                <!-- Product Description Div -->
             	<div id="productDescription"></div>
                
                <div class="row center">
                	<!-- Gluten Free Div -->
                	<div class="displayInlineBlock" id="productGlutenFree"></div>
                	<!-- BPA Free Div -->
                	<div class="displayInlineBlock" id="productBPAFree"></div>
                	<!-- GMO Div -->
                	<div class="displayInlineBlock" id="productGMOFree"></div>
                </div>
             </div>
             <div class="col-md-5 col-sm-6">
             	<!-- Product Image Div -->
             	<div id="productImage"></div>
             </div>
        </div>
	</div>
</section>
<!-- Product Row End -->

<section id="relatedProducts"> 
	<div class="container topmargin">
    	<div class="row">
        	<div class="col-md-7">
                <h1 class="center">Featured Recipe</h1>
            	<div id="featuredRecipe"></div>
        	</div>
            <div class="col-md-5">
            	<h1 class="center">Similar Product</h1>
                <br>
                <div id="productSimilar"></div>
        	</div>
        </div>
	</div>
</section>

1 个答案:

答案 0 :(得分:2)

好的,代码中有很多错误,但我现在不打算这样做。要做你想要实现的目标非常简单,你已经获得了所需的所有代码,你只需要进行一些调整就可以使它工作。

第一步。将点击事件绑定到正文而不是元素。

$("body").on('click', ".showProduct", function(event){

这样,页面上任何单击showProduct的元素都会触发该函数,而不仅仅是初始函数运行时绑定的元素。

其余部分非常简单,您已经拥有类似产品的信息,在创建元素时,您只是没有将它放在数据属性中。现在显然有更好的方法可以做到这一点......但是你会这样做:

similarProduct = '<div>' + 
    '<a href="#" class="showProduct"' +
    'data-itempageurl="' + similarProduct.itemFullUPC + '"' + 
    'data-itemgmo="' + similarProduct.itemGMOFree + '"' + 
    'data-itembpa="' + similarProduct.itemBPAFree + '"' + 
    'data-itemgluten="' + similarProduct.itemGlutenFree + '"' + 
    'data-itemlowsodium="' + similarProduct.itemLowSodium + '"' + 
    'data-itemorganic="' + similarProduct.itemOrganic + '"' + 
    'data-itemimage="' + similarProduct.imageURL + '"' + 
    'data-itemname="' + similarProduct.itemName + '"' + 
    'data-itemoz="' + similarProduct.itemPackSize + '"' + 
    'data-itemdescription="' + similarProduct.itemDescription + '"' + 
    'data-itemupc="' + similarProduct.itemFullUPC + '"' + '>' + 
    '<img class="img-responsive img-hover similarProductImagesCategory" src="' + similarProduct.imageURL + '">' + 
    '<h3 class="similarProductSubCategoryImgCaption">' + similarProduct.itemName + 
    '</h3>' + '</a>' + '</div>';
});

应该这样做......现在您会注意到当您点击其中一个类似的产品时,它应该向您显示您想要的信息,但是它会将新的类似产品添加到现有的类似产品列表中将继续增长你点击的越多。我相信你可以弄清楚如何清除清单。如果不只是喊叫。

以下是codepen:http://codepen.io/anon/pen/oYJpve

编辑:作为附注...通常你想存储产品ID为关键的json数据。然后,您只将密钥保存在data属性中。点击后,您只需使用产品ID(密钥)访问存储对象中的信息。

这很容易做到。只需创建一个全局变量

var product_data = {};

然后在使用函数获取数据时填充对象。所以在你的ajax调用成功之后,你可能会遇到这样的事情:

product_data = json;

甚至更好的是你可以使用一个将数据更改为你想要的结构的函数:

product_data = restructureDataFunction(json);

然后你有一个很好的数据集,你可以从中拉出来。如果您需要对数据集进行更新,则可以在一个位置而不是在每个元素中进行更新。

如果你愿意,看看Angular 2,它应该教你很多,也可以帮助你完成未来的项目。它是非常强大的工具,特别是如果你有html元素代表数据。