最近接了一個微信小程式的專案,專案需求是小程式語音識別,全景圖片觀看,登入授權,獲取個人基本資訊。非常不錯,具有一定的參考借鑑價值,需要的朋友參考下吧
需求
小程式語音識別,全景圖片觀看,登入授權,獲取個人基本資訊
一:基礎框架
官方開發文件:https://developers.weixin.qq.com/miniprogram/dev/ (其實官方文件寫的很清楚了)
1.跟著官方文件一步一步來,新建一個小程式專案就好
2.然後呢,畢竟預設的只是基本骨架,肌肉線條還是要自己填的
app.json 是當前小程式的全域性配置
小程式的所有頁面路徑、介面表現、網路超時時間、底部 tab
在app.json 檔案中新增下面的程式碼就可以了
還有哦,一定要配置pagepath(頁面路徑)
"tabBar": {
"color": "#cacaca",
"selectedColor": "#f40",
"borderStyle": "#fff",
"backgroundColor": "#ffffff",
"list": [
{
"pagePath": "pages/index/index",
"text": "VR圖片",
"iconPath": "image/home.png",
"selectedIconPath": "image/home_hover.png"
},
{
"pagePath": "pages/voice/voice",
"iconPath": "image/question.png",
"selectedIconPath": "image/question_hover.png",
"text": "VR語音"
},
{
"pagePath": "pages/me/me",
"iconPath": "image/mytb.png",
"selectedIconPath": "image/mytb_hover.png",
"text": "你的VR世界"
}
]
}
效果圖:
需求二:看見別人家的小程式,頂部可以自定義顏色
如圖:
好說,好說
同樣在app.json 中插入一下程式碼,顏色自定義啦~
"window": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#458af1",
"navigationBarTitleText": "VR世界",
"navigationBarTextStyle": "black",
"enablePullDownRefresh": true
},
總結app.json 配置,直接參考官方文件中的app.json 所有配置,一般需求都可以滿足
貼心的貼上官方連結:https://developers.weixin.qq.com/miniprogram/dev/framework/config.html#%E5%85%A8%E5%B1%80%E9%85%8D%E7%BD%AE
需求三:開發小程式,一般要使用者授權登入,然後獲取使用者的基本資訊,個人頁面
如圖:
1.官方api 地址:https://developers.weixin.qq.com/miniprogram/dev/api/open-api/login/wx.login.html
2.找到登入介面
//app.js
App({
onLaunch: function () {
// 展示本地儲存能力
var logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 登入
wx.login({
success: res => {
// 傳送 res.code 到後臺換取 openId, sessionKey, unionId
}
})
// 獲取使用者資訊
wx.getSetting({
success: res => {
if (res.authSetting['scope.userInfo']) {
// 已經授權,可以直接呼叫 getUserInfo 獲取頭像暱稱,不會彈框
wx.getUserInfo({
success: res => {
// 可以將 res 傳送給後臺解碼出 unionId
this.globalData.userInfo = res.userInfo
// 由於 getUserInfo 是網路請求,可能會在 Page.onLoad 之後才返回
// 所以此處加入 callback 以防止這種情況
if (this.userInfoReadyCallback) {
this.userInfoReadyCallback(res)
}
}
})
}
}
})
},
globalData: {
userInfo: null
}
})
需求三:小程式有哪些元件可用呢
其實小程式的這一套框架,跟vue 很像,上手很容易
1.帖心的放上鍊接:https://developers.weixin.qq.com/miniprogram/dev/component/
2.官方支援的元件
3.如何使用,舉栗子,使用swiper 輪播
<swiper indicator-dots="{{indicatorDots}}"
autoplay="{{autoplay}}" interval="{{interval}}" duration="{{duration}}">
<block wx:for="{{imgUrls}}">
<swiper-item>
<image src="{{item}}" class="slide-image" width="355" height="150"/>
</swiper-item>
</block>
</swiper>
效果圖:
總結:小程式的接班框架就搭好了,需要什麼就在裡面新增就好了 如果你完全是新手,不是前端開發者,要先去了解一下
4.要遵循小程式的規則,模板語言,資料繫結,元件使用,傳參,路由這些
5.
總結