在微信小程序中使用加解密。
如果你要实现的是DES加解密,并且在静态html文件里的顺序是这样的
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>DES解密实例</title>
……
最近项目中有一个需求:清除浏览器记住密码。故写了这么个组件。
import React from 'react';
import { Input } from 'antd';
class PasswordInput extends React.Component {
static getDerivedStateFromProps(nextProps) {
if ('value' in ……