README
WxPromise
使用
import WxPromise from "wx-promise-m";
WxPromise(wx.chooseImage)({
// ...options
}).then(res=>{
// res
})
Weapp Promise
<script type="module">
import wxPromiseM from 'https://cdn.skypack.dev/wx-promise-m';
</script>
import WxPromise from "wx-promise-m";
WxPromise(wx.chooseImage)({
// ...options
}).then(res=>{
// res
})