일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- js
- springboot
- MUI
- Express
- RDS
- macbook
- Jenkins
- github
- 500
- javascript
- axios
- Troubleshooting
- TypeScript
- Spring
- webhook
- docker
- nodejs
- EC2
- deploy
- linux
- Java
- ngrok
- React
- error
- fastapi
- AWS EC2
- AWS
- MongoDB
- python
- Github Actions
- Today
- Total
목록Troubleshooting (11)
BEAT A SHOTGUN
ERROR ⛔ 프론트엔드에서 axios.post 로 data 를 백엔드로 보내고 백엔드는 DB로 보내려고 할 때, data 도 들어간 것 같고 백엔드 메서드도 반응을 하는데 not null property 에러가 나온다? CODE // Front const [userId, setUserId] = useState(""); const [password, setPassword] = useState(""); const [email, setEmail] = useState(""); function userSignIn(){ axios.post('http://localhost:8080/join', data:{ userId:userId, password:password, email:email }) .catch(funct..
ERROR ❌ Object { message: "Request aborted", name: "AxiosError", code: "ECONNABORTED", config: {…}, request: XMLHttpRequest, stack: "" }라는 오류가 떴다. CODE // Front const [id, setId] = useState(""); const [title, setTitle] = useState(""); function testSubmit(){ axios.get('http://localhost:8080/test/creat',{ params:{ id:id, title:title } }) .catch(function(error){ console.log("실패"); console.l..
셀레니움 업데이트로 문법이 바뀌었다. 일주일 전에 문제가 생겼다. ❌ TROUBLE selenium AttributeError 'Webdriver' object has no attribute 'find_element_by_id' find_elements_by_tag_name 등 찾아보니 find by 문법이 바뀌었다. 이미지의 맨 아래와 같은 문법 find\_element\_by\_tag\_name() 으로 사용하면 AttributeError 'WebDriver' object has no attribute 'find\_element\_by\_tag\_name'이라는 에러가 나온다. 왜냐면 selenium이 업데이트 되면서 find_element_b..