微信小程序——手把手教你写一个微信小程序

  小程序语音识别,全景图片观看,登录授权,获取个人基本信息

一:基础框架

  官方开发文档:https://developers.weixin.qq.com/miniprogram/dev/ (其实官方文档写的很清楚了)

  

微信小程序——手把手教你写一个微信小程序

跟着官方文档一步一步来,新建一个小程序项目就好

然后呢,毕竟默认的只是基本骨架,肌肉线条还是要自己填的

 app.json 是当前小程序的全局配置

  小程序的所有页面路径、界面表现、网络超时时间、底部 tab

  需求一:底部tab,我们要像原生APP那样要有是三个常驻的按钮,切换页面

  

在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世界" } ] }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zyzpxp.html