-
npm加载jsencrypt ,你也可以下载js文件在index引用或者直接引用线上的,不在叙述
-
npm i jsencrypt -S
-
min.js写入
import JSEncrypt from 'jsencrypt';//引用模块
Vue.prototype.$jsEncrypt = JSEncrypt;//全局
在你的上传方法里面写入,一般在获取后端回调的公钥里面写入
const jse = new this.$jsEncrypt()//创建
jse.setPublicKey("")//配置公钥,一般都为后端传输过来的
this.name = jse.encrypt("你的账户或者密码")
网友评论