일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- express.js
- Props
- graphQL
- middleware
- CLASS
- JavaScript
- tailwindcss
- web
- concept
- Redux
- Interface
- REACT
- built in object
- hardhat
- evm
- bitcoin
- 기준
- CSS
- SSR
- HTML
- useState
- node.js
- 삶
- error
- typeScript
- blockchain
- Ethereum
- solidity
- nextJS
- API
- Today
- Total
목록error (15)
ReasonJun

Product : https://www.pets-mas.com/ 메리 댕냥스마스 우리집 댕냥이로 크리스마스 카드를 만들어 보세요! www.pets-mas.com Video : https://youtu.be/mBvLnZIfWoA problems : 1. filter routing problem : => I set filtering in the layout for each page, but a loop phenomenon was discovered. 2. Libraries that worked normally on desktop did not work on mobile. 3. Depending on the mobile software version, some operations may not work. 4...

Problem : I'm using Nextjs 14 and wanted to utilize the layout folder to automatically load data when accessing the web. Why? This is fine when sending requests from client to server, but when communicating from server to server in Nextjs, the difference between http/https causes problems. Can occur while the Next.js app is establishing an SSL/TLS secure connection. Typically, this error occurs ..

Error : Why : While rendering your application, there was a difference between the React tree that was pre-rendered from the server and the React tree that was rendered during the first render in the browser (hydration). Solution : import { useState, useEffect } from 'react' export default function App() { const [isClient, setIsClient] = useState(false) useEffect(() => { setIsClient(true) }, [])..
What happened? In the case of ts-node, ts was compiled using the commonJS method. Therefore, an error occurs when you try to run a ts file with ts-node in the app or src subfolder of nextjs, which is compiled with esNext. Error : https://github.com/TypeStrong/ts-node/issues/935 `ts-node` fails when ES Modules are in the dependency graph in Node.js 13+ · Issue #935 · TypeStrong/ts-node I basicall..
The error message invalid opcode: PUSH0 means that the Ethereum Virtual Machine (EVM) does not recognize the PUSH0 opcode. This opcode was introduced in Solidity compiler version 0.8.20, but it is not yet supported by all EVM implementations. If you are trying to deploy a contract that uses the PUSH0 opcode, you will need to make sure that you are deploying it to an EVM implementation that suppo..
The try / catch statement in Solidity is used to handle errors in external function calls and contract creation. It is similar to the try / catch statement in other programming languages, but there are some important differences. How to use try / catch To use the try / catch statement, you first need to wrap the external function call or contract creation in a try block. The try block will be ex..