真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

微信小程序商城開(kāi)發(fā)中如今搭建https框架

小編給大家分享一下微信小程序商城開(kāi)發(fā)中如今搭建https框架,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

成都創(chuàng)新互聯(lián)公司從2013年成立,是專(zhuān)業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目成都網(wǎng)站制作、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢(mèng)想脫穎而出為使命,1280元若羌做網(wǎng)站,已為上家服務(wù),為若羌各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話(huà):18982081108

本篇文章給大家?guī)?lái)的內(nèi)容是關(guān)于微信小程序商城開(kāi)發(fā)之https框架的搭建以及頂部和底部導(dǎo)航的實(shí)現(xiàn),有一定的參考價(jià)值,有需要的朋友可以參考一下,希望對(duì)你有所幫助。

之前的小程序商城系列已經(jīng)更新到購(gòu)物車(chē)模塊了但是很多讀者反映如何能夠更接近于實(shí)戰(zhàn)場(chǎng)景,動(dòng)態(tài)的獲取數(shù)據(jù)并展示出來(lái)!那么經(jīng)過(guò)這段時(shí)間的準(zhǔn)備我們開(kāi)始來(lái)做新的微商城版本,該版本是完全按照工作場(chǎng)景來(lái)開(kāi)發(fā)的。

小程序https域名配置

登錄注冊(cè)好的微信小程序官方賬號(hào)并登錄平臺(tái)——>設(shè)置——>開(kāi)發(fā)設(shè)置,如下圖所示:

微信小程序商城開(kāi)發(fā)中如今搭建https框架

創(chuàng)建小程序項(xiàng)目并封裝ajax請(qǐng)求

創(chuàng)建小程序項(xiàng)目可以參考文章微信小程序電商實(shí)戰(zhàn)-入門(mén)篇

新建ajax.js
#目錄結(jié)構(gòu)-pages
--utils
---ajax.js
聲明api 全局變量調(diào)用地址
const api = 'https://100boot.cn/wxShop/';
封裝request請(qǐng)求
wx.request({    
    method: opt.method || 'GET',    
    url: api + opt.url,    
    header: {      
        'content-type': 'application/json' // 默認(rèn)值
    },    
    data: opt.data,    
    success: function (res) {      
        if (res.data.code == 100) {        
            if (opt.success) {
              opt.success(res.data);
            }
          } else {        
            console.error(res);
            wx.showToast({          
                title: res.data.message,
            })
          }
        }
  })
}module.exports.request = request
配置開(kāi)發(fā)者key

打開(kāi)utils/util.js,增加key

module.exports = {
  formatTime: formatTime,
  key: '開(kāi)發(fā)者key'
}

微信小程序微商城:開(kāi)發(fā)者key獲取

app.json
{  
    "pages": [    
        "pages/home/home",    
        "pages/cart/cart",    
        "pages/detail/detail",    
        "pages/classify/classify",    
        "pages/mine/mine",    
        "pages/index/index",    
        "pages/logs/logs"
  ],  
    "window": {    
    "backgroundTextStyle": "light",    
    "navigationBarBackgroundColor": "#f0145a",    
    "navigationBarTitleText": "微商城",    
    "backgroundColor": "#f0145a"
  },  
    "tabBar": {    
        "color": "#858585",    
        "selectedColor": "#f0145a",    
        "backgroundColor": "#ffffff",    
        "borderStyle": "#000",    
    "list": [
      {        
        "pagePath": "pages/home/home",        
        "iconPath": "images/home.png",        
        "selectedIconPath": "images/home_select.png",        
        "text": "首頁(yè)"
      },
      {        
        "pagePath": "pages/classify/classify",        
        "iconPath": "images/classify.png",        
        "selectedIconPath": "images/classify_select.png",        
        "text": "分類(lèi)"
      },
      {        
        "pagePath": "pages/cart/cart",        
        "iconPath": "images/cart.png",        
        "selectedIconPath": "images/cart_select.png",        
        "text": "購(gòu)物車(chē)"
      },
      {        
        "pagePath": "pages/mine/mine",        
        "iconPath": "images/mine.png",        
        "selectedIconPath": "images/mine_select.png",        
        "text": "我的"
      }
    ]
  }
}
app.wxss
.container {  
    height: 100%;  
    display: flex;  
    flex-direction: column;  
    align-items: center;  
    justify-content: space-between;  
    padding: 200rpx 0;  
    box-sizing: border-box;
}
home.wxml
  
  
  {{item.navbarName}}  
home.wxss
page{  
  display: flex;  
  flex-direction: column;  
  height: 100%;  
}  .navbar{  
  flex: none;  
  display: flex;  
  background: #fff;  
}  .navbar .item{  
  position: relative;  
  flex: auto;  
  text-align: center;  
  line-height: 80rpx;  
  font-size:14px;
}  
/* 頂部導(dǎo)航字體顏色 */
.navbar .item.active{  
  color: #f0145a;  
}  
/* 頂部指示條屬性 */
.navbar .item.active:after{  
  content: "";  
  display: block;  
  position: absolute;  
  bottom: 0;  
  left: 0;  
  right: 0;  
  height: 6rpx;  
  background: #f0145a;  
}
home.js

引用ajax和utils公共js

const ajax = require('../../utils/ajax.js');
const utils = require('../../utils/util.js');

頁(yè)面初始化導(dǎo)航數(shù)據(jù)

data: {    
    navbars:null,
    currentTab: 0,
  },

頁(yè)面初始化加載導(dǎo)航數(shù)據(jù)函數(shù)

/**
  * 生命周期函數(shù)--監(jiān)聽(tīng)頁(yè)面加載
  */

onLoad: function (options) {    
    var that = this;    
    //加載navbar導(dǎo)航條
    that.navbarShow();
  },

ajax獲取導(dǎo)航數(shù)據(jù)

navbarShow:function(success){    
    var that = this;
    ajax.request({      
        method: 'GET',      
        url: 'home/navBar?key=' + utils.key,      
        success: data => {
        that.setData({          
            navbars: data.result
        })        
        console.log(data.result)
      }
    })
  },
實(shí)現(xiàn)效果如下

微信小程序商城開(kāi)發(fā)中如今搭建https框架

以上是“微信小程序商城開(kāi)發(fā)中如今搭建https框架”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


分享文章:微信小程序商城開(kāi)發(fā)中如今搭建https框架
網(wǎng)頁(yè)地址:http://weahome.cn/article/ggpedc.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部