我用rust写一个urlsafe-base64,编译成wasm,想直接导入小程序中使用。
在webapp项目中,用起来真的很方便,
<script>
import {encode, decode} from 'urlsafe-base64'
let orig = '';
let result = '';
let type = 'encode/decode'
function handleEncode(event) {
if(!orig) {
return false
}
type = 'encode'
result = encode(orig)
}
function handleDecode(event) {
if(!orig) {
return false
}
type = 'decode'
try {
result = decode(orig)
} catch(e) {
result = 'decode error'
}
}
</script>
小程序这边可以考虑这么支持下吗
了解一下
https://developers.weixin.qq.com/miniprogram/dev/devtools/npm.html