摘要:
1.使用推荐命令创建项目: npx create-react-app AppName --template redux 2.分析项目代码: 2.1 store.js import { configureStore } from '@reduxjs/toolkit';//可以融合多个reducer,并 阅读全文
摘要:
参考地址:https://developer.mozilla.org/zh-CN/docs/Web/API/URLSearchParams#%E7%A4%BA%E4%BE%8B https://xiaozhuanlan.com/topic/3258479016 阅读全文
摘要:
一行显示不下: white-space: nowrap; text-overflow: ellipsis; overflow: hidden; word-break: break-all; 两行显示不下: overflow: hidden; text-overflow: ellipsis; disp 阅读全文
摘要:
1.安装qiankun yarn add qiankun 或者 npm i qiankun -S 2.创建应用 .创建主应用 vue create qiankun-base .创建React子应用 create-react-app qiankun-react .创建Vue子应用 vue create 阅读全文
摘要:
https://www.jianshu.com/p/93cef831025c https://blog.csdn.net/huanhuan03/article/details/108049793 阅读全文
摘要:
1.安装 npm install clipboard --save 2.引入 import Clipboard from "clipboard"; 3.使用 const [copyInfo, setCopyInfo] = useState(''); // 复制的信息 useEffect(() => 阅读全文
摘要:
let regexp = new RegExp(/^\+?[0-9]\d*$/); console.log(regexp.test(xxx)); //手机号码验证 export function telReg(value) { if (!value) return false; const telR 阅读全文
摘要:
<input type="text"> <button>获取验证码</button> <script> var btn = document.querySelector('button'); var t = 10; //设置监听事件,按下按钮后禁用按钮 btn.addEventListener('c 阅读全文
摘要:
/** * @description: 倒计时开始时间点targetTime 参数 * @return 格式时间 */ export const cutDownTime = (targetTime) => { const currentSecond = parseInt(new Date().get 阅读全文
摘要:
<div id="copyEl" onclick="handleCopy('123456789')">123456</div> <script> function handleCopy(data) { var oInput = document.createElement("input"); oIn 阅读全文