思政教育签到
taro redux thunk taro-ui
yarn install -> npm run dev:weapp
继去年毕设,使用小程序原生语言开发了一个英语学习小程序(smart英语学习》》)以后,一年没有写过小程序了。最近心血来潮,准备用很火的Taro(类似于react语法,多端)开发一个课堂签到小程序,踩踩坑,感受一下。
- 使用Taro,redux开发的学生课堂签到小程序展示
- *Taro的基本使用
- *作为React开发者,使用的注意事项(仅包括实践中遇到的)
- 实际开发中的处理
- Taro以及微信小程序开发中遇到的问题总结
- TODO
功能概述:基于地理位置(经纬度)的签到平台。另外包括校内新闻模块,word资料下载模块,个人信息模块等。扫码登录: 学生体验账号 123456,密码 123456。
yarn global add @tarojs/cli
,使用 yarn 安装 CLItaro init myApp
创建模板项目(按照一系列默认命令,即可创建redux ,mobx等生成器模板)。并且之后会默认安装依赖。npm un dev:weap
,进入微信开发工具查看自己的小程序。- 具体组件和api和小程序相似,可查看Taro文档自行了解。
- 之后开发就类似于React了。注意
componentDidShow、 componentDidMount
生命周期在小程序中的不同表现。tab页componentDidMount
只走一次。
备注:Taro 默认对小程序的异步 API 进行了包装,可以像使用 Promise 那样进行调用。
// WX
wx.request({
url: '', // 仅为示例,并非真实的接口地址
data: {},
header: {
'content-type': 'application/json' // 默认值
},
success(res) {}
})
// Taro
Taro.request(url).then(function (res) {
console.log(res)
})
-
sourcemap
不能用就很xxxxx -
不能解构传值,需要
key value
传给子组件 -
不能在
render
之外写jsx
-
this.props
传来的函数必须on
或者dispatch
开头 -
父组件传来的
props
,必须定义在static defaultProps
里,要不然获取不到 -
componentDidMount
,在微信/百度/字节跳动/支付宝小程序中这一生命周期方法对应 app 的onLaunch
-
componentDidShow
在微信/百度/字节跳动/支付宝小程序中这一生命周期方法对应onShow
-
componentDidHide
在微信/百度/字节跳动/支付宝小程序中这一生命周期方法对应onHide
-
JS 代码里必须书写单引号,特别是 JSX 中,如果出现双引号,可能会导致编译错误
-
环境变量
process.env
的使用,不要以解构的方式来获取通过env
配置的process.env
环境变量,请直接以完整书写的方式process.env.NODE_ENV
来进行使用 -
使用
this.$componentType
来判断当前Taro.Component
是页面还是组件,可能取值分别为PAGE
和COMPONENT
-
不支持无状态组件
-
不能在包含 JSX 元素的
map
循环中使用if
表达式 -
不能使用
Array#map
之外的方法操作 JSX 数组 -
父组件要往子组件传递函数,属性名必须以
on
开头
以上是使用过程中遇到的问题,更多注意事项请查阅官方文档
// config/index.js
alias: {
'@actions': path.resolve(__dirname, '..', 'src/actions'),
'@assets': path.resolve(__dirname, '..', 'src/assets'),
'@components': path.resolve(__dirname, '..', 'src/components'),
'@constants': path.resolve(__dirname, '..', 'src/constants'),
'@reducers': path.resolve(__dirname, '..', 'src/reducers'),
'@style': path.resolve(__dirname, '..', 'src/style'),
'@util': path.resolve(__dirname, '..', 'src/util')
},
// feth.js
import Taro from '@tarojs/taro'
const defaultMethod = 'POST'
const successStatus = 200
const successFlag = 1
const messageToast = title => {
Taro.showToast({
title,
icon: 'none',
duration: 1000
})
}
export default function fetch(options) {
const {
url,
method = defaultMethod,
params,
showErrorToast = true,
} = options
return Taro.request({
url,
method,
data: params,
}).then(response => {
const { statusCode, data } = response
// 不是200以外的
if (statusCode != successStatus) {
const { error } = data
// reject出去。showToast在catch里执行。
const errMessage = {errMsg: error || '请求接口失败'}
return Promise.reject(errMessage)
} else {
// flag是不是1的判断
const { flag, message, data: datas } = data
if (flag == successFlag) {
return Promise.resolve(datas)
} else {
const errMessage = {errMsg: message || '流程错误'}
return Promise.reject(errMessage)
}
}
}).catch(errors => {
const { errMsg } = errors
if (showErrorToast) {
messageToast(errMsg || '发起请求异常')
}
const errMessage = errMsg || '发起请求异常'
return Promise.reject(errMessage)
})
}
小程序目前提供了wx.downloadFile的API,但目前只支持长传和下载图片,语音,视频 三种类型的文件。doc文件会下载为临时路径的 .myword文件,可供预览(安卓手机默认微信内置浏览器打开,可转发至电脑。ios tbd)。
Taro.showLoading()
const params = {
url,
fileType: "doc",
success(res) {
// 只要服务器有响应数据,就会把响应内容写入文件并进入 success 回调,业务需要自行判断是否下载到了想要的内容
if (res.statusCode === 200) {
const wxPath = res.tempFilePath
Taro.openDocument({
filePath: wxPath,
fileType: "doc",
success: function (ress) {
Taro.hideLoading()
console.log(ress)
},
fail: function (resfo) {
Taro.hideLoading()
util.showToast('打开文档失败')
}
})
}
},
fail: function (resfd) {
Taro.hideLoading()
util.showToast('文件下载失败')
},
}
Taro.downloadFile(params).then()
wx.getLocation({
type: 'gcj02', // wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标
success(res) {
const { latitude, longitude } = res
}
})
①、wx.getLocation,调用前需要 用户授权。scope.userLocation
②、发起签到与扫码签到时,应保证type
相同。
// 用户授权,app.js中配置项
permission: {
"scope.userLocation": {
"desc": "获取用户的签到位置"
}
},
预览二维码图片以后,不支持识别二维码。
getEventData(data, tag) {
return data.currentTarget.dataset[tag];
},
previewImage = (e) => {
const current = getEventData(e, 'src')
Taro.previewImage({
current: current, // 当前显示图片的http链接
urls: [current] // 需要预览的图片http链接列表
})
}
- 发挥多端的优势,尝试其他小程序,h5等的打包发布。
- 继续跟进word文档下载,更换二维码为小程序二维码带参数(
wxacode.getUnlimited
) - openid对于多端的影响
==菜的抠脚,大佬轻喷。内容较粗糙,有问题请指正。== 有必要夸一下,小程序的处理速度还是很快的,两个小时审核就通过了。