使用数组和函数在 JavaScript 中构建初学者友好的购物车的分步指南
来源:dev.to
时间:2024-10-10 08:46:05 477浏览 收藏
在文章实战开发的过程中,我们经常会遇到一些这样那样的问题,然后要卡好半天,等问题解决了才发现原来一些细节知识点还是没有掌握好。今天golang学习网就整理分享《使用数组和函数在 JavaScript 中构建初学者友好的购物车的分步指南》,聊聊,希望可以帮助到正在努力赚钱的你。
学习新编程语言的最佳方法是创建尽可能多的项目。如果您构建专注于您所学知识的迷你项目,您将获得更顺畅的初学者体验。
我们的目标是避免“教程地狱”(即您不断观看多个教程视频而没有任何具体项目来展示您的技能的可怕地方),并建立处理大型项目所需的信心。
在本文中,我将向初学者解释如何使用基本的 javascript 概念创建购物车系统。
先决条件
要尝试这个项目,您需要深入了解:
- 功能
- 方法
- 数组
构建什么?
购物车将有一个系统,用户可以:
- 将商品添加到购物车
- 从购物车中删除商品
- 查看购物车内容
- 计算购物车中商品的总价
第 1 步:设置数据
首先,我们需要创建一些数组来保存项目的数据。具体需要的数组是:
- itemnames:指定每个项目的名称。
- itemprices:包含每件商品的价格。
- itemquantities:告诉特定商品有多少可用。
- iteminstock:通过使用 true 或 false 确定商品是否有库存。
const itemnames = ["laptop", "phone"]; const itemprices = [1000, 500]; const itemquantities = [1, 2]; const iteminstock = [true, true];
第 2 步:使用功能构建购物车
我们将创建一个主要的购物车功能,其中包含购物车的逻辑。我们将使用闭包来确保购物车保持私密性,并且只有某些功能可以与其交互。
const shoppingcart = () => { const cart = []; // the cart is a private array // add an item to the cart const additemtocart = (itemindex) => { if (iteminstock[itemindex]) { cart.push(itemindex); console.log(`${itemnames[itemindex]} added to the cart`); } else { console.log(`${itemnames[itemindex]} is out of stock`); } }; // remove an item from the cart const removeitemfromcart = (itemindex) => { const index = cart.indexof(itemindex); if (index > -1) { cart.splice(index, 1); } }; // get the names of items in the cart const getcartitems = () => { return cart.map(itemindex => itemnames[itemindex]); }; // calculate the total price of items in the cart const calculatetotal = () => { return cart.reduce((total, itemindex) => { return total + itemprices[itemindex] * itemquantities[itemindex]; }, 0); }; return { additemtocart, removeitemfromcart, getcartitems, calculatetotal }; };
分解代码:
- additemtocart(itemindex):根据商品索引将商品添加到购物车(仅当有库存时)。
- removeitemfromcart(itemindex):使用索引从购物车中删除项目。
- getcartitems():使用 map() 将索引转换为名称,返回购物车中商品的名称。
- calculatetotal():通过使用reduce()方法将购物车中商品的价格和数量相乘来计算总价。
第 3 步:测试购物车
完成的项目应该进行测试以确保其按需要工作。我们将测试:
添加项目
查看购物车
查看总价
const mycart = shoppingcart(); // add a laptop (item 0) mycart.additemtocart(0); // add a phone (item 1) mycart.additemtocart(1); // view cart contents console.log(mycart.getcartitems()); // output: ['laptop', 'phone'] // calculate the total price console.log(mycart.calculatetotal()); // output: 2000
分解代码:
- 我们通过调用它来创建购物车的实例: const mycart = shoppingcart();.
- 我们使用 itemnames 数组中的索引将商品添加到购物车: mycart.additemtocart(0);对于笔记本电脑和 mycart.additemtocart(1);对于电话。
- 我们使用 getcartitems() 打印购物车中商品的名称
- 最后,我们使用calculatetotal()计算总价。
第 4 步:从购物车中删除商品
一个好的购物车系统必须允许用户从购物车中删除商品。我们可以通过调用removeitemfromcart()来做到这一点。
mycart.removeitemfromcart(1); // remove the phone // view the updated cart console.log(mycart.getcartitems()); // output: ['laptop'] // recalculate the total price console.log(mycart.calculatetotal()); // output: 1000
奖励:了解购物车系统中的闭包
闭包帮助购物车数组保持私有,只能通过 shoppingcart() 函数返回的函数访问。
- 购物车数组是在shopping cart()内部定义的,不能从外部直接访问。但是,由于 additemtocart()、removeitemfromcart()、getcartitems() 和calculatetotal() 函数定义在同一范围内,因此它们可以与 cart 交互。
- 闭包是 javascript 的一项强大功能,有助于维护代码中的数据隐私和结构。
结论
通过使用基本数组和函数,您已经构建了一个功能齐全的购物车系统,可以添加、删除和计算商品总数。这个项目最棒的部分是它使用闭包来封装和管理状态,而不需要复杂的对象或类。
最终代码
const itemNames = ["Laptop", "Phone"]; const itemPrices = [1000, 500]; const itemQuantities = [1, 2]; const itemInStock = [true, true]; const ShoppingCart = () => { const cart = []; const addItemToCart = (itemIndex) => { if (itemInStock[itemIndex]) { cart.push(itemIndex); console.log(`${itemNames[itemIndex]} added to the cart`); } else { console.log(`${itemNames[itemIndex]} is out of stock`); } }; const removeItemFromCart = (itemIndex) => { const index = cart.indexOf(itemIndex); if (index > -1) { cart.splice(index, 1); } }; const getCartItems = () => { return cart.map(itemIndex => itemNames[itemIndex]); }; const calculateTotal = () => { return cart.reduce((total, itemIndex) => { return total + itemPrices[itemIndex] * itemQuantities[itemIndex]; }, 0); }; return { addItemToCart, removeItemFromCart, getCartItems, calculateTotal }; }; const myCart = ShoppingCart(); myCart.addItemToCart(0); myCart.addItemToCart(1); console.log(myCart.getCartItems()); console.log(myCart.calculateTotal()); myCart.removeItemFromCart(1); console.log(myCart.getCartItems()); console.log(myCart.calculateTotal());
我希望您喜欢学习,我很高兴您能够构建更多精彩的项目!
今天关于《使用数组和函数在 JavaScript 中构建初学者友好的购物车的分步指南》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
400 收藏
-
369 收藏
-
158 收藏
-
495 收藏
-
246 收藏
-
209 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习