项目地址:https://github.com/yalishizhude/rxwx
Write less, do more elegantly!
封装了RxJS对象微信小程序API,微信小程序业务域名只能添加https的吗##微信小程序开发教程。让你写出更优雅更简介的代码。
RxWX模块支持所有微信小程序中wx对象的属性和函数,例如getUserInfo等。
RxWX模块的Rx属性为RxJS对象,支持RxJS对象所有属性,例如Observable等。
安装
下载
使用github
git clone https://github.com/yalishizhude/RxWX.git
使用npm
npm i rxjs-wx
使用yarn
yarn add rxjs-wx
拷贝根目录下的Rx.js和RxWX.js到项目目录
引用文件
import rxwx from 'RxWX.js'
微信小程序中使用示例
源码地址
同步函数
// 原写法
try {
let result = wx.removeStorageSync('xx')
console.log(result)
} catch(e) {
console.error('微信小程序API发现错误')
}
// 使用RxWX,rxwx对象具有wx对象的所有函数和属性,函数返回Observable对象
import rxwx from '../../utils/RxWX.js'
rxwx.removeStorageSync('xx')
.catch((e) => console.error('RxWX发现错误'))
.subscribe((resp) => console.log(resp))异步函数
// 原写法
wx.removeStorage({
key: 'xx',
success: function(res) {
console.log(res)
},
error: function(e) {
console.error('微信小程序API发现错误')
}
})
// 引用RxWX,rxwx对象函数参数与wx同名函数一致
import rxwx from '../../utils/RxWX.js'
rxwx.removeStorage({key: 'xx'})
.catch((e) => console.error('RxWX发现错误'))
.subscribe((resp) => console.log(resp))异步嵌套
// 调用微信小程序原生API
wx.login({
success(res) {
wx.getUserInfo({
success(res) {
console.log(res.userInfo)
},
fail(e) {
console.error(e)
}
})
},
fail(e) {
console.error(e)
}
})
// 调用RxWX
import rxwx from '../../utils/RxWX.js'
rxwx.login()
.switchMap(() => rxwx.getUserInfo())
.catch(e => console.error(e))
.subscribe(res => console.log(res.userInfo))异步合并
// 调用微信小程序API
let getUser = new Promise((success, fail) => {
wx.getUserInfo({
success,
fail
})
})
let getSystem = new Promise((success, fail) => {
wx.getSystemInfo({
success,
fail
})
})
Promise.all([getUser, getSystem])
.then((resp) => console.log(resp), e => console.error(e))
// 调用RxWX中的Rx对象,包含RxJS所有操作符和函数
import rxwx, {Rx} from '../../utils/RxWX.js'
// 使用zip操作符
Rx.Observable.zip(rxwx.getUserInfo(), rxwx.getSystemInfo())
.catch(e => console.error(e))
.subscribe(resp => console.log(resp))wepy中使用示例
源码地址
安装RxWX
npm i -S rxjs-wx
当然我跟推荐你使用yarn
yarn add rxjs-wx
引入模块
import rxwx from 'rxjs-wx'
使用rxwx
src/app.wpy
src/pages/index.wpy
更多
RxJS
微信小程序API
更多内容请关注公众号“web学习社”。