- 博客(167)
- 收藏
- 关注
原创 DOMException: Failed to execute ‘replaceState‘ on ‘History‘: A history state object with URL
检查url 地址中除 https:// 还要其他双斜杠否。https 模式下兼容 “//” 双斜杠。
2022-11-24 16:10:56
2636
原创 node 原生 es module 支持
文件名后缀需要改成.mjs导入文件需要完整的文件名包含.mjs文件内必须用ES module规范,不能使用 ComonJsnode版本大于v12.0.0
2022-07-22 09:23:36
136
原创 vue3 websocket 前端配置
vue3 配置websocket 的时候 尝试了很多次这里使用的是 'vue-3-socket.io' , 'socket.io-client' 库操作起来有点问题vue-3-socket.io 生成的socket实例io 属性上有addListener注册服务端返回的事件
2022-06-29 20:49:58
1085
原创 cmd报错ANOMALY: use of REX.w is meaningless (default operand size is 64) git clone时候报 git invalid hash
某些监控软件跟win10的更新冲突导致在注册表中增加项win + r 输入regedit打开注册表打开到目录计算机\HKEY_LOCAL_MACHINE\SOFTWARE\TEC\Ocular.3\agent\config 下新建 [字符串值] hookapi_filterproc_external,数值数据: cmd.exe;powershell.exe;git.exe;*.exe;...
2022-06-06 10:03:31
2003
3
原创 elementui / input框只能输入正整数
@input = 'inputValue'limitInput(inputValue) { this.formData.xxx = inputValue.replace(/[^0-9]/g, '') this.formData.yyy = inputValue.replace(/[^0-9]/g, '')},
2022-05-31 10:38:33
701
原创 动态规划硬币
const cs = [1, 2, 5]const ac = 10function h(n) { const c = [0] if (n === 0) { return 0 } for (let i = 1; i <= n; i++) { let co = Infinity console.log(co, c[i - 1] + 1); if (i - 1 >= 0) co = Math.mi.
2022-02-22 08:40:56
125
原创 旋转矩阵
const arr = [ [1, 2, 3], //[7,4,1] [4, 5, 6], //[8,5,2] [7, 8, 9]] //[9,6,3]function demo(arr) { const n = arr.length for (let i = 0; i < n; i++) { for (let j = i; j < n; j++) { [arr[i][j], arr[j][i]] .
2022-02-21 16:00:36
158
原创 react 中实现v-for
import React from 'react';import ReactDOM from 'react-dom';class List extends React.Component { constructor(props) { super(props) this.state = { citys: ['上海', '北京', '南京'] } } render() { let citys = this.state.citys.map(cit.
2022-02-10 10:08:28
1256
1
原创 react 输入框数据绑定
import React from 'react';import ReactDOM from 'react-dom';class NInput extends React.Component { constructor(props) { super(props) this.state = { inputValue: 33 } } render() { return (<div> <input value={th.
2022-02-10 09:36:57
770
原创 node执行外部脚本
function execCMD(cmd) { const { spawn } = require('child_process'); const fs = require('fs') const iconv = require('iconv-lite'); const config = { encoding: 'cp936', binaryEncoding: 'binary' } const command = spawn(.
2022-01-26 10:01:11
1279
原创 状态模式实例
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>D.
2022-01-25 15:42:58
115
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人