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