上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 88 下一页
摘要: import React from 'react' import { Button } from 'react-bootstrap' function AlertDismissible() { return ( <div className="m-test-wrap"> <Button>button 阅读全文
posted @ 2021-12-18 16:14 徐同保 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 安装包: yarn add react-bootstrap bootstrap 引入样式: import 'bootstrap/dist/css/bootstrap.min.css' 按钮: js: import React from 'react' import { Button, Row, Co 阅读全文
posted @ 2021-12-18 11:57 徐同保 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 官网: https://www.thunderbird.net/zh-CN/ 填好邮件地址和密码后会提示安装exchange插件 设置检查新消息的频率 阅读全文
posted @ 2021-12-02 18:24 徐同保 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 修改对象属性,会影响person function setName(obj) { obj.name = 'Nicholas' console.log(obj.name) //Nicholas //obj = {} obj.name = 'Greg' console.log(obj.name) //G 阅读全文
posted @ 2021-11-26 15:08 徐同保 阅读(0) 评论(0) 推荐(0) 编辑
摘要: //实例xu上没有say方法,会顺着原型链向上查找,构造函数上包含say方法,成功调用 //__proto__是每个对象都有的属性,xu不是函数,没有prototype,构造函数Person包含prototype //__proto__可以理解为“构造器的原型”,即__proto__ constru 阅读全文
posted @ 2021-11-20 18:56 徐同保 阅读(0) 评论(0) 推荐(0) 编辑
摘要: useTreeLight.js: import React, { useEffect, useState, useMemo } from 'react' import TreeCard from './TreeCard' import { deepClone } from '../../../uti 阅读全文
posted @ 2021-11-18 15:57 徐同保 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 在cp指令前面加反斜杠可以不弹出是否覆盖的询问而直接覆盖 *代表复制build文件夹里的内容 -r:递归复制,用于复制目录 -f 是强制覆盖 \cp -rf /server/demo/unzip/build/* /server/demo/test/tan/origin/master/ 目标目录不存在 阅读全文
posted @ 2021-11-17 11:08 徐同保 阅读(0) 评论(0) 推荐(0) 编辑
摘要: ssh 登录linux系统,执行批sh文件时报这个错误 没有权限 解决方案: chmod 777 /etc/squid 运行命令后,squid文件夹(目录)的权限就被修改为777(可读可写可执行) 先修改,再执行 chmod 777 ./buildForLinux.sh ./buildForLinu 阅读全文
posted @ 2021-11-17 10:59 徐同保 阅读(0) 评论(0) 推荐(0) 编辑
摘要: flex布局中的一些基本概念 容器和项目 什么叫容器 采用flex布局的元素被称作容器。 什么叫项目 在flex布局中的子元素被称作项目。 即父级元素采用flex布局,则父级元素为容器,全部子元素自动成为项目 容器默认存在两根轴:水平的主轴(main axis)和垂直的交叉轴(cross axis) 阅读全文
posted @ 2021-11-15 17:35 徐同保 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 可以通过ssh登录的服务器,就可以使用sftp协议链接, 端口号是22 能ssh登录的服务器,如果安装了FileZilla server端,即提供了ftp服务,可以使用ftp协议链接 端口号:21 官网: https://filezilla-project.org/ 阅读全文
posted @ 2021-11-15 17:34 徐同保 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 88 下一页