收藏
回答

可以用npm依赖方式引入wasm吗?

我用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://github.com/honwhy/urlsafe-base64

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容