摘要:
var xhttp = new XMLHttpRequest();xhttp.onreadystatechange = function() { if (this.readyState 4 && this.status 200) { console.log(this.responseText); } 阅读全文
摘要:
Minio 作为对象存储,灵活方便,结合java 实现minio 文件上传 1.搭建maven环境,添加依赖包 阅读全文
摘要:
在maven项目的resource目录下新建一个 application.properties , 定义server.port 没有生效 显示端口被占用,在windows 下输入 netstat -ano 显示 被占用的端口,然后输入tasklist 显示被占的端口应用,启动任务管理器将其关闭,重新 阅读全文
摘要:
jsx防注入攻击:React DOM在渲染之前默认会过滤所有传入的值。它可以确保你的应用不会被注入攻击。所有的内容在渲染之前都被转换成了字符串。这样有效的防止XSS(跨站脚本)攻击。 阅读全文
摘要:
http://babeljs.io/ 主要是让例如es6这样的代码可以向下兼容浏览器 阅读全文
摘要:
https://reactjs.org/docs/installation.html 创建react项目(这里也可以用npx): npm install -g create-react-app create-react-app my-app cd my-app np start 使用CDN:使用它来 阅读全文
摘要:
onmouseover:鼠标移到某元素之上 onmouseout:鼠标从某元素移开 上面两个事件会冒泡,就算是写了e.stopPropagation(),也不起作用(个人尝试后的结果,不代表权威) onmouseenter:鼠标指针移动到元素上时触发 onmouseleave:鼠标指针移出元素上时触 阅读全文
摘要:
var Wi = [7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2, 1]; // 加权因子 var ValideCode = [1, 0, 10, 9, 8, 7, 6, 5, 4, 3, 2 阅读全文
摘要:
设置用户信息: git config [--global] user.email git comfig [--global] user.password 提交代码: git commit -m [message] //提交暂存区到仓库区 git commit [file1] [file2] -m[m 阅读全文
摘要:
浏览器的支持情况 css grid调试工具:安装Firefox Nightly浏览器 或者安装chrome css-grid-highlighter插件 使用grid的时候必须给它一个确切的行数和列数 阅读全文