更新记录
1.0.0(2019-10-18) 下载此版本
使用Proxy实现,uni异步化
平台兼容性
Uni异步化插件,支持await/async
在main.js中引用
// uni异步化
import uniAsync from '@/js_sdk/i-uni-async/uni-async.js'
// 设置到prototype
Vue.prototype.$uniAsync = uniAsync
使用方法,在页面或者组件中调用,支持所有uni方法!
// 以getImageInfo为例
export default {
data() {
return {}
},
methods: {
async test() {
const image = await this.$uniAsync.getImageInfo({
src: ‘http://xxx.com/images/xxx.png’
})
console.log(image.path)
}
}
}