我使用 angularJS 路由构建了一个单页应用程序。我有一个购物车页面,用户在其中选择了产品并可以继续结帐。
如果您点击按钮,您将被重定向到结帐页面。
问题是我对总成本进行了硬编码,我想使用 jquery 或 ajax 将其从产品页面传递到结帐页面。我显然可以使用 localstorage 但如果我切换回我的产品页面并编辑价格然后返回结帐,因为没有重新加载发生 localstorage 显示以前的总数。这就是为什么我需要 jquery 或 ajax 解决方案。
我的代码:
//-----Click Checkout button ------
$("#checkOut").click(()=>{
//get count of products
var numOfProducts = $('.product-columns').length;
if(numOfProducts!=0){
//pass total cost to variable
var total = $('.FinalTotal').text();
//append total cost to html total cost element of checkout.php
window.location.href='../php/index.php#!/purchase';
}else{
alert("Your cart is empty");
}
});
来自 products.php 的总数
<p> Total </p>
<span class="new__price FinalTotal">$0</span>
<a href="" id ="checkOut">PROCEED TO CHECKOUT</a>
购买.php
<h2 id = "totalPrice"> Total Price : </h2>
单页应用的 angularjs 路由
app.config(($routeProvider)=>{
$routeProvider
.when("/" , {templateUrl:"main.php"})
.when("/login" , {templateUrl : "login.php"})
.when("/register" , {templateUrl : "register.php"})
.when("/results" , {templateUrl : "showResults.php"})
.when("/purchase", {templateUrl:"purchase.php"})
.when("/cart" ,{templateUrl:"products.php"});
});
答案 0 :(得分:2)
有多种方法可以在页面之间传递数据:
由于您已经在使用 $routeProvider,因此无需使用 window.location.href,
进行导航,您可以使用 $location.path.
app.config(($routeProvider)=>{
$routeProvider
.when("/" , {templateUrl:"main.php"})
.when("/login" , {templateUrl : "login.php"})
.when("/register" , {templateUrl : "register.php"})
.when("/results" , {templateUrl : "showResults.php"})
.when("/purchase/:cost", {templateUrl:"purchase.php"}) //add the cost as the route param.
.when("/cart" ,{templateUrl:"products.php"});
});
现在,当路由到您的购买页面时:
$location.path('/purchase/'+cost);
在您的购买控制器中,注入 $routeParams 并访问成本:
app.controller('purchaseController', function($scope,$routeParams) {
$scoope.totalCost = $routeParams.cost;
});
您可以使用可以在一个控制器中设置成本值并在另一个控制器中访问它的服务。
var app = angular.module('yourModule',[]);
app.service("dataService",function(){
var totalCost = "";
setCost: function(cost){
totalCost = cost;
},
getCost: function(){
return totalCost;
}
});
在您的产品控制器中,注入 dataService 并使用 setCost 方法。
app.controller('productsController', function($scope, dataService) {
dataService.setCost(totalCost);
});
接下来,在您的 PurchaseController 中,访问该值:
app.controller('purchaseController', function($scope, dataService) {
$scope.totalCost = dataService.getCost();
});
答案 1 :(得分:0)
这就是我使用 localstorage 和 ajax 来完成这项工作的方法:
//-----Checkout------
$("#checkOut").click(()=>{
//get count of products
var numOfProducts = $('.product-columns').length;
var subtotal = parseInt($('#fullSubTotal').text().replace('$',''));
var shipping = parseInt(localStorage.getItem('shipping').replace('$',''));
localStorage.setItem('subtotal', $('#fullSubTotal').text());
var sum = shipping +subtotal;
var total = `$` + `${sum}`;
if(numOfProducts!=0){
//pass total cost
$.ajax({
type:'POST',
data:{totalPurchase:total},
success:()=>{
window.location.href='../php/index.php#!/purchase';
$("#totalOnPurchase").html(`Total: `+`${total}`);
}
});
}else{
alert("Your cart is empty");
}
});