摘要:
1. 用Docker部署的容器,如果需要查找接口报错的原因docker ps 获取容器ID[CONTAINER ID]docker logs -f CONTAINER ID然后就请求接口 阅读全文
摘要:
在A组件中使用了B组件 如果想在A组件的props中验证 B组件的PropTypes ,那么可以...B.propTypes A.propTypes = { children: PropTypes.node.isRequired, ...B.propTypes, }; 阅读全文
摘要:
不推荐的API document.write 2.1.2 推迟执行脚本 <script>有一个叫defer的属性 这个属性表示: 脚本在执行的时候不会改变页面的结构。也就是说 脚本会被延迟到整个页面都解析完成后再运行,相当于告诉浏览器: 立即下载,但延迟执行 <script defer scr="e 阅读全文
摘要:
使用函数的方式传给React组件, 执行函数后, 会得到一个promise, 通过then可以获取到js文件中的内容 parent.js import React from 'react'; import Children from './children'; const App = () => ( 阅读全文
摘要:
import { useState, useEffect } from 'react'; import PropTypes from 'prop-types'; const Delayed = ({ children, delay }) => { const [isShow, setIsShow] 阅读全文
摘要:
当文件出现多余空格时,被Jenkins检查出错误,导致BUILD FAILED 解决方法: VSCode 安装 Trailing Spaces 插件 阅读全文
摘要:
1. display:table框架 首先我们定义一个list <% List test = new ArrayList( 6 ); test.add( "Test String 1" ); test.add( "Test String 2" ); test.add( "Test String 3" 阅读全文
摘要:
1. 安装 yarn add eslint -D 2. 生成配置文件 npx eslint --init √ How would you like to use ESLint? · problems√ What type of modules does your project use? · esm 阅读全文
摘要:
现在和过去Present and past 1. 现在进行时 A. is/am/are + ing 就是现在进行时 I'm drivinghe/she/it is workingwe/you/they are doing etc B. I am doing something = I started 阅读全文
摘要:
[临时方案]很简单,直接把需要版本之外的node都删除了~ [方案1]nvm alias default v12.xx.xx 设置默认版本 阅读全文