摘要:
import React, { Component, useContext, useState } from 'react'; // 解构写法 const { Provider, Consumer } = React.createContext(); // defaultValue的问题 // ht 阅读全文
摘要:
// 函数组件使用forwardRef传递ref const ForwardRefComponent = React.forwardRef((props, ref) => <div ref={ref.bind(this)} {...props}>子组件DOM</div>) export defaul 阅读全文
摘要:
React 通过ref获取DOM对象或者子组件实例的用法 https://www.cnblogs.com/greatdesert/p/12697726.html React 通过forwardRef获取函数组件内某个DOM节点或者子组件的实例 https://www.cnblogs.com/grea 阅读全文
摘要:
# 输出双引号 awk -F "" '{print "\""$1"\"\,"}' "xxxxx", 使用""双引号把一个双引号括起来,然后用转义字符\对双引号进行转义,输出双引号。 # 输出单引号 awk -F "" '{print "'\''"$1"'\'\,'"}' 'xxxxx', # 使用一 阅读全文
摘要:
linear-gradient(angle/direction, color stop, color stop, ...); 一个线性渐变可以由多种颜色组成。除了指定颜色的方向和角度之外,linear-gradient()接收一组color stop作为参数。color stop由一个颜色和一个可选 阅读全文
摘要:
转载 https://blog.csdn.net/rain_lny/article/details/102974843 阅读全文
摘要:
Mongo # 查看数据库 > show dbs admin 0.000GB config 0.000GB local 0.000GB # 如果数据库不存在,则创建数据库,否则切换到指定数据库 > use local switched to db local # 查看当前使用的数据库 > db lo 阅读全文
摘要:
百度的解决方法: 打开https://www.microsoft.com/en-us/download/confirmation.aspx?id=53337会自动下载dgreadiness_v3.6解压后右键点击开始按钮选择powershell (管理员) cd进入解压目录。运行此脚本:Set-Ex 阅读全文
摘要:
awk pattern { action } {filenames} # $0变量是指整条记录,$1表示当前行的第一个域,$2表示当前行的第二个域,$n当前记录的第n个域,字段间由FS分隔, 每行按 FS 字段分隔符(默认是空格或tab) # cat 1.txt Beth 4.00 0 Dan 3. 阅读全文