美文网首页webview与h5交互大全程序员H5学习笔记
在HbuilderX的Uni-app中引入crypto-js m

在HbuilderX的Uni-app中引入crypto-js m

作者: 毛毛v5 | 来源:发表于2019-03-20 11:07 被阅读3次

在 hbuilderX的菜单“视图”中选择“显示终端”,在终端中把当前目录定位到uni-app的根目录,这样才可以把crypto-js库安装在正确的位置,在终端中键入:npm install crypto-js ,等待片刻,crypto-js 库就装在了uni-app的根目录的:/node_modules/crypto-js/* 中了。要使用其相关加解密算法,只要在代码中引入:import cj from '../../../node_modules/crypto-js/crypto-js.js' 就可以搞事情了。

比如:

<script>

import cj from '../../../node_modules/crypto-js/crypto-js.js'

const data = {

t:"sign up",

                    account: this.account,

                    password: cj.MD5(this.password).toString(),

                    email: email0,

cellphone:cellphone0,

                }

</script>

相关文章

网友评论

    本文标题:在HbuilderX的Uni-app中引入crypto-js m

    本文链接:https://www.haomeiwen.com/subject/gjfzmqtx.html