摘要:
在es模块中使用__dirname时,会报错 The "__dirname is not defined in ES module scope" error occurs when we try to try to use the __dirname global variable in an ES 阅读全文
摘要:
获取上次合并代码的id git reflog 回滚代码 git reset --hard id 阅读全文
摘要:
antd安装启动后报错Variable @primary-color-hover is undefined 报错前package.json中依赖版本信息: "dependencies": { ... "@ant-design/pro-form": "^1.15.1", "@ant-design/pr 阅读全文
摘要:
const App = () => { const value = `例子:\n今天天气不错`; const value1 = `例子:\r今天天气不错`; return ( <> <TextArea placeholder="例子: 今天天气不错" style={{ height 阅读全文
摘要:
在https://www.ipaddress.com输入443的网站,获取域名对应IP 编辑电脑hosts文件: 140.82.112.3 github.com 阅读全文
摘要:
问题原因,nextjs是服务端渲染的,在服务器预渲染HTML,然后发送到客户端进行渲染。因此在服务端渲染时,是获取不到浏览器对象window/document等 dynamic 动态导入组件 home.js export default Home () { console.log(window); 阅读全文
摘要:
在next.config.js中,通过配置rewrites fallback来把请求代理到指定域名 module.exports = { ... async rewrites() { return { fallback: [ { source: '/:path*', destination: `ht 阅读全文
摘要:
项目使用了ts 新建tsconfig.json { "compilerOptions": { ... "paths": { "@/*": ["src/*"] } } } 未使用ts 新建jsconfig.json { "compilerOptions": { ... "paths": { "@/*" 阅读全文
摘要:
React class render props mouse-position.js import React, { Component } from 'react' class MousePosition extends Component { constructor(props) { super 阅读全文
摘要:
useState useState,让函数组件拥有了维持状态的功能。维持状态是指在函数的多次渲染之间,这个state是可以在函数中间共享的 使用方式 import React, { useState } from 'react'; const Counter = () => { const [cou 阅读全文