Taro 를 사용 하여 애플 릿 쇼핑 몰 의 카 트 기능 모듈 을 실현 하 는 인 스 턴 스 코드

Taro 따르다 React 문법 규범 의 다단 개발 해결 방안.
현재 시장 상단 의 형 태 는 다양 합 니 다.웹,React-Native,위 챗 애플 릿 등 여러 가지 측면 에서 널리 행 해 지고 있 습 니 다.업무 요구 가 동시에 서로 다른 측면 에서 표현 을 요구 할 때 서로 다른 측면 에 대해 여러 개의 코드 를 작성 하 는 비용 이 매우 높 습 니 다.이 럴 때 코드 한 세트 만 작성 하면 여러 가지 측면 에 적합 한 능력 이 필요 합 니 다.
쓰다 Taro,우 리 는 코드 한 세트 만 쓰 고 통과 할 수 있 습 니 다. Taro 의 컴 파일 도 구 는 소스 코드 를 각각 다른 엔 드(위 챗/바 이 두/알 리 페 이/바이트 점프/QQ/경 동 애플 리 케 이 션,빠 른 응용,H5,React-Native 등)에서 실행 할 수 있 는 코드 로 컴 파일 합 니 다.
공식 문서:https://nervjs.github.io/taro/
프로젝트 업로드 GitHub:https://github.com/LazyTraveller/Jerry-Taro-Demo/blob/master/README.md
1.Taro cli 도구 로 항목 초기 화
1.taro 비계 설치 도구
우선,npm 또는 yarn 전역 설치@tarojs/cli 를 사용 하거나 npx 를 직접 사용 해 야 합 니 다.

#    npm    CLI
$ npm install -g @tarojs/cli
# OR    yarn    CLI
$ yarn global add @tarojs/cli
# OR     cnpm,   cnpm    CLI
$ cnpm install -g @tarojs/cli
2.taro 프로젝트 초기 화

          
 $ taro init myApp
npm 5.2+                npx       
$ npx @tarojs/cli init myApp
3.myApp 디 렉 터 리 에 들 어가 설치 의존

#    yarn     
$ yarn
# OR    cnpm     
$ cnpm install
# OR    npm     
$ npm install
4.프로젝트 를 컴 파일 하고 Dev 모드 를 열 어 애플 릿 인 dist 디 렉 터 리 를 생 성 합 니 다.

# yarn
$ yarn dev:weapp
$ yarn build:weapp
# npm script
$ npm run dev:weapp
$ npm run build:weapp
#       
$ taro build --type weapp --watch
$ taro build --type weapp
# npx        
$ npx taro build --type weapp --watch
$ npx taro build --type weapp
5.위 챗 개발 자 도 구 를 사용 하여 프로젝트 의 dist 디 렉 터 리 를 엽 니 다.

2.애플 릿 카 트 기능 의 실현 과정
효과 그림:

3.구체 적 인 실현 코드
src/pages/cart/cart.js

import { View, Icon, Navigator, Image, Text, } from '@tarojs/components'
import Taro from '@tarojs/taro'
import './cart.less'
 
class Cart extends Taro.Component {
 config = {
 navigationBarTitleText: '   '
 }
 
 state = {
 carts: [
 {
 id: 1,
 title: '     MEOW                    (v1)',
 image:
  'https://tva1.sinaimg.cn/large/00831rSTgy1gczok56tkzj30m80m8qe4.jpg',
 num: 3,
 price: '88.00',
 selected: true
 },
 {
 id: 2,
 title: '     MEOW                    (v2)',
 image:
  'https://tva1.sinaimg.cn/large/00831rSTgy1gczok56tkzj30m80m8qe4.jpg',
 num: 1,
 price: '188.00',
 selected: true
 },
 {
 id: 3,
 title: '     MEOW                    (v3)',
 image:
  'https://tva1.sinaimg.cn/large/00831rSTgy1gczok56tkzj30m80m8qe4.jpg',
 num: 2,
 price: '288.00',
 selected: false
 },
 {
 id: 4,
 title: '     MEOW                    (v4)',
 image:
  'https://tva1.sinaimg.cn/large/00831rSTgy1gczok56tkzj30m80m8qe4.jpg',
 num: 2,
 price: '388.00',
 selected: false
 }
 ], //      
 hascheckList: [], 
 totalPrice: 0, //   ,   0
 selectAllStatus: true //     ,    
 }
 
 componentDidShow() {
 const cart = [
 
 ]
 this.setState({
 carts: cart
 })
 this.getTotalPrice();
 }
 
 /**
 *     
 */
 getTotalPrice() {
 let carts = this.state.carts //        
 let total = 0
 for (let i = 0; i < carts.length; i++) {
 //           
 if (carts[i].selected) {
 //           
 total += carts[i].num * carts[i].price //        
 }
 }
 this.setState({
 //      data      
 carts: carts,
 totalPrice: total.toFixed(2)
 })
 }
 
 
 /**
 *        
 */
 addCount(e) {
 const index = e.currentTarget.dataset.index
 let carts = this.state.carts
 let num = carts[index].num
 num = num + 1
 carts[index].num = num
 this.setState({
 carts: carts
 })
 this.getTotalPrice()
 }
 
 /**
 *        
 */
 minusCount(e) {
 const index = e.currentTarget.dataset.index
 let carts = this.state.carts
 let num = carts[index].num
 if (num <= 1) {
 return false
 }
 num = num - 1
 carts[index].num = num
 this.setState({
 carts: carts
 })
 this.getTotalPrice()
 }
 
 /**
 *          
 */
 deleteList(e) {
 const index = e.currentTarget.dataset.index
 let carts = this.state.carts
 carts.splice(index, 1)
 this.setState({
 carts: carts
 })
 if (!carts.length) {
 this.setState({
 hasList: false
 })
 } else {
 this.getTotalPrice()
 }
 }
 
 /**
 *         
 */
 selectList(id,e) {
 const index = e.currentTarget.dataset.index
 let carts = this.state.carts
 // const selected = carts[index].selected
 // carts[index].selected = !selected
 
 carts.forEach(item => {
 if (id == item.id) {
 item.selected = !item.selected
 }
 })
 // const checkall = this.data.selectAllStatus === true ? false : false
 this.setState({
 carts: carts, 
 // selectAllStatus: false
 })
 
 const selectAllStatus = carts.every(item => item.selected)
 this.setState({
 selectAllStatus: selectAllStatus
 })
 this.getTotalPrice()
 }
 
 /**
 *        
 */
 selectAll(e) {
 let selectAllStatus = this.state.selectAllStatus
 selectAllStatus = !selectAllStatus
 let carts = this.state.carts
 
 for (let i = 0; i < carts.length; i++) {
 carts[i].selected = selectAllStatus
 }
 this.setState({
 selectAllStatus: selectAllStatus,
 carts: carts
 })
 this.getTotalPrice()
 }
 
 //   
 closeFun() {
 let list = []
 let listTotal = []
 this.state.carts.map((v, k) => {
 console.log('     ', v)
 if (v.select) {
 list.push(v)
 } else {
 listTotal.push(v)
 }
 })
 }
 
 render() {
 const { carts, selectAllStatus, totalPrice, hasList } = this.state;
 let count = 0;
 carts.map(it => {
 if(it.selected === true) {
 count++;
 }
 })
 return (
 <View className="main">
 {carts.length > 0 ? (
  <View>
  <View className="cart-box">
  {carts.map((item, index) => {
  return (
   <View className="cart-list" key={index}>
   {item.selected ? (
   <Icon
   type="success"
   color="#b30000"
   data-index={index}
   className="cart-pro-select"
   onClick={this.selectList.bind(this,item.id)}
   ></Icon>
   ) : (
   <Icon
   type="circle"
   className="cart-pro-select"
   data-index={index}
   onClick={this.selectList.bind(this,item.id)}
   ></Icon>
   )}
   <Navigator url={'../details/details?id=' + item.id}>
   <Image className="cart-thumb" src={item.image}></Image>
   </Navigator>
   <Text className="cart-pro-name">{item.title}</Text>
   <Text className="cart-pro-price">{'¥' + item.price}</Text>
   <View className="cart-count-box">
   <Text
   className="cart-count-down"
   onClick={this.minusCount}
   data-index={index}
   >
   -
   </Text>
   <Text className="cart-count-num">{item.num}</Text>
   <Text
   className="cart-count-add"
   onClick={this.addCount}
   data-index={index}
   >
   +
   </Text>
   </View>
   <Text
   className="cart-del"
   onClick={this.deleteList}
   data-index={index}
   >
     
   </Text>
   </View>
  )
  })}
  </View>
  <View className="cart-footer">
  {selectAllStatus ? (
  <Icon
   type="success_circle"
   color="#b30000"
   className="total-select"
   onClick={this.selectAll}
  ></Icon>
  ) : (
  <Icon
   type="circle"
   color="#b30000"
   className="total-select"
   onClick={this.selectAll}
  ></Icon>
  )}
  <Navigator url="../orders/orders">
  <View className="order-icon"></View>
  </Navigator>
  <Text >{count> 0? `  (${count})`: '  '}</Text>
  <Text className="cart-toatl-price">{'  ¥' + totalPrice}</Text>
  <Text className="pay" onClick={this.closeFun} data-index={index}>
      
  </Text>
  </View>
  </View>
 ) : (
  <View>
  <View className="cart-no-data">       ~</View>
  </View>
 )}
 </View>
 )
 }
} 
 
export default Cart
src/pages/cart/cart.less

/* pages/cart/cart.wxss */
 
.cart-box{
 padding-bottom: 100px;
 margin-bottom: 10px
}
.cart-list{
 position: relative;
 padding: 20px 20px 20px 285px;
 height: 185px;
 border-bottom: 1px solid #e9e9e9;
}
.cart-list .cart-pro-select{
 position: absolute;
 left: 20px;
 top: 90px;
 width: 45px;
 height: 45px;
}
 
.cart-list .cart-thumb{
 position: absolute;
 top: 20px;
 left: 85px;
 width: 185px;
 height: 185px;
 border-radius:5px;
 box-shadow:5px 2px 6px #000
}
.cart-list .cart-pro-name{
 display: inline-block;
 // width: 500px;
 height: 105px;
 line-height: 50px;
 overflow: hidden;
 font-family: Microsoft Yahei, Cochin, Georgia, Times, 'Times New Roman', serif;
 font-size:28px;
 margin-right: 15px
}
 
.cart-list .cart-pro-price{
 display: inline-block;
 font-size:30px;
 color: #b30000;
 height: 105px;
 line-height: 50px;
}
.cart-list .cart-count-box{
 position: absolute;
 left: 420px;
 bottom: 20px;
 width: 250px;
 height: 80px;
}
.cart-list .cart-count-box text{
 display: inline-block;
 line-height: 80px;
 text-align: center;
}
.cart-count-down,.cart-count-add{
 font-size: 32px;
 width: 60px;
 height: 80px;
 font-family: Microsoft Yahei, Cochin, Georgia, Times, 'Times New Roman', serif;
 border: silver solid 1px;
 border-radius: 10px;
}
.cart-count-num{
 width: 80px;
 font-size: 32px;
 height: 80px;
 border-radius: 10px;
 border: silver solid 1px;
 margin-left: 1px;
 margin-right: 1px;
}
.cart-del{
 position: absolute;
 right: 15px;
 bottom: 20px;
 width: 80px;
 height: 80px;
 line-height: 80px;
 text-align: center;
 font-family: Arial,Helvetica,sans-serif;
 font-size:30px;
 color: #b30000;
 text-shadow: black;
}
.cart-footer{
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 90px;
 line-height: 90px;
 padding:0 100px 0 80px;
 box-sizing: border-box;
 background: #bfbfbf;
 color: #4d4d4d;
 font-family: Microsoft Yahei, Cochin, Georgia, Times, 'Times New Roman', serif;
 font-size: 30px;
}
.total-select{
 position: absolute;
 left: 20px;
 top: 25px;
 width: 45px;
 height: 45px;
}
.order-icon{
 position: absolute;
 right: 40px;
 top: 25px;
 width: 45px;
 height: 45px;
 background-size: 100%;
}
.cart-toatl-price{
 /* float: right; */
 margin-left:80px;
 text-align: center;
 width: 100px;
 font-family: Microsoft Yahei, Cochin, Georgia, Times, 'Times New Roman', serif;
 color: #b30000;
 font-size: 30px;
}
.pay {
 position: absolute;
 right: 0;
 background-color: #b30000;
 height: 100%;
 width: 200px;
 text-align: center;
 font-family: Microsoft Yahei, Cochin, Georgia, Times, 'Times New Roman', serif;
 font-size: 26px;
 color: #f2f2f2;
 text-align: center
}
 
.cart-no-data{
 padding:40px 0;
 color: #999;
 text-align: center;
}
주의:로 컬 컴퓨터 taro 의 버 전 을 검사 합 니 다.컴퓨터 는 프로젝트 의 taro 버 전 번호 와 같 아야 합 니 다.그렇지 않 으 면 컴 파일 오 류 를 보 냅 니 다.이 프로젝트 의 taro CLI 버 전 은 v 2.1.1 입 니 다.

           :
1、        taro    
      # taro
$ taro update self [version]
# npm
npm i -g @tarojs/cli@[version]
# yarn
yarn global add @tarojs/cli@[version]
2、        taro    
 $ taro update project [version]
version    , :1.x.x/latest  ,           
총결산 
타 로 를 이용 한 애플 리 케 이 션 몰 카 트 기능 모듈 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.타 로 구현 애플 리 케 이 션 몰 카 트 에 관 한 더 많은 내용 은 저희 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 읽 어 주시 기 바 랍 니 다.앞으로 도 많은 관심 부 탁 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기