摘要: ![](https://img2022.cnblogs.com/blog/2752939/202205/2752939-20220510101745930-30005605.png) 阅读全文
posted @ 2022-05-10 10:18 xuelin 阅读(32) 评论(0) 推荐(0) 编辑
摘要: ##这个数据 现在已经完成了,将本来在第一位的18代金券改到第31位,下面说一下怎么实现的。 //currHotRightsTypeSorted这个是数据源头,legalRightsType这个是数据的分类,因为18元代金券只在两个分类中 //1对数据进行遍历,找打需要分类中某个元素并赋值给一个新的 阅读全文
posted @ 2022-04-21 18:20 xuelin 阅读(31) 评论(0) 推荐(0) 编辑
摘要: ###01:赋值、比较、函数传参 <script> /* 赋值:原始类型赋【值】;引用类型赋【引用】 比较:原始类型比较的是否相等;引用类型比较的是否是一个对象 函数传参:原始类型作为参数,函数内的操作不影响实参的值。引用类型作为参数, 函数内的操作会影响实参的值 */ // 原始类型赋值 let 阅读全文
posted @ 2022-03-18 15:26 xuelin 阅读(49) 评论(0) 推荐(0) 编辑
摘要: //引入图片 import Img128 from '@/assets/img/newMyVoucher/UserInfo/128background.png'; import Img18 from '@/assets/img/newMyVoucher/UserInfo/18background.p 阅读全文
posted @ 2022-03-17 16:28 xuelin 阅读(22) 评论(0) 推荐(0) 编辑
摘要: //电话加密 function geTel(phone) { let NewPhone = phone.toString(); var reg = /^(\d{3})\d{4}(\d{4})$/; return NewPhone.replace(reg, '$1****$2'); } geTel(p 阅读全文
posted @ 2022-03-17 11:12 xuelin 阅读(72) 评论(0) 推荐(0) 编辑
摘要: ###1在父组件外部定义变量A创建上下文,2在父组件使用变量A<A.Provider> <子组件/> </A.Provider> ,3.在子组件中创建变量使用useContext(),把定义变量返回出去 import React, { useState,createContext,useContex 阅读全文
posted @ 2022-03-10 12:32 xuelin 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Docker 的相关使用记录 一.安装docker linux环境使用yum命令安装docker 第一步:确保自己的虚拟机没有安装过docker,如果安装过的需要将原先的docker进行卸载,命令如下: sudo yum remove docker \ docker-client \ docker- 阅读全文
posted @ 2022-02-25 10:09 xuelin 阅读(32) 评论(0) 推荐(1) 编辑
摘要: ##可选属性 type类型别名 type 会给一个类型起个新名字。 type 有时和 interface 很像,但是可以作用于原始值(基本类型),联合类型,元组以及其它任何你需要手写的类型。 ###interface TypeScript 的核心原则之一是对值所具有的结构进行类型检查。 而接口的作用 阅读全文
posted @ 2022-02-22 16:19 xuelin 阅读(509) 评论(0) 推荐(1) 编辑
摘要: 形参展开 像这样实参1传递给了n,而剩下的2,3,4,5等等,都传递给了数组m function multiply (n:number,...m:number[]){ return m.map((x) => x*2)//[ 4, 6, 8, 10 ] } console.log("🚀 ~ file 阅读全文
posted @ 2022-02-22 10:07 xuelin 阅读(33) 评论(0) 推荐(1) 编辑
摘要: ##viod object类型 unknown类型 ##never类型 ##function类型 {{uploading-image-89562.png(uploading...)}} 阅读全文
posted @ 2022-02-22 09:50 xuelin 阅读(31) 评论(0) 推荐(1) 编辑