码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2019-09-11 18:15:53      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:sign   hbuilder   引入   his   ring   显示   this   代码   nod   

在 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 md5

标签:sign   hbuilder   引入   his   ring   显示   this   代码   nod   

原文地址:https://www.cnblogs.com/lhxsoft/p/11507231.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!