일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Java
- MUI
- Spring
- js
- Express
- 500
- MongoDB
- EC2
- javascript
- ngrok
- python
- React
- macbook
- linux
- axios
- RDS
- AWS
- deploy
- Jenkins
- nodejs
- github
- error
- TypeScript
- Troubleshooting
- fastapi
- docker
- springboot
- Github Actions
- webhook
- AWS EC2
- Today
- Total
목록전체 글 (79)
BEAT A SHOTGUN
ERROR ❌ // FE const handleReplyDelete(props){ console.log(props.replyId) } ... Delete onClick 이벤트를 넣은 버튼을 눌렀을 때 props 로 넣어준 reply 가 제대로 넘겨주는지 확인하기 위해 console에 replyId 를 출력하는 간단한 이벤트를 발생시켜보았다. 그런데 페이지를 Rendering 할 때 onClick 이벤트가 자동으로 작동된 뒤, 버튼을 눌러도 console 에 replyId 를 찍어주지 않았다. Rendering 할 때 작동 된 뒤로는 버튼이 전혀 반응이 없어서 너무 의아했다. 해결 ✅ {handleReplyDelete(reply)}}>Delete 이렇게 Arrow Function 을 사용해 한 번 더 함수..
ERROR ❌ // FE function replySubmit(){ axios.get('http://localhost:8080/reply', { params:{ userId:8, postId:1, contents:replyContent } }) .catch(function(error){ ... // BE @GetMapping("/reply") public ReplyDTO writeReply( @RequestParam(value = "user") Long userId, @RequestParam(value = "post") Long postId, @RequestParam(value = "contents") String contents){ return replyService.writeReply(userId,p..
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..
zip 과 * 짜집기 zip zip 은 인자를 짜집기해준다. ex1 list1 = ['cat', 'dog', 'bear'] list2 = ['meow', 'mung', 'k_ang'] print(list(zip(list1, list2))) 실행하면 [('cat', 'meow'), ('dog', 'mung'), ('bear', 'k_ang')] 순서대로 하나 하나 꺼내 짜집기 해준다. ex2 list = [[0, 3, 1, 2], [1, 1, 3, 4], [0, 3, 1, 3], [3, 0, 3, 1]] ziplist = list(zip..
Shortcut Ctrl + F9 : Run All (전체 실행) Ctrl + Enter : Run the current cell (현재 셀 실행) Alt + Enter : Run the current cell and add a cell below it (현제 셀 실행 후 아래에 셀 추가) 사실 전체 실행 단축키 때문에 찾다가 없어서 내가 찾아 적음😉
셀레니움 업데이트로 문법이 바뀌었다. 일주일 전에 문제가 생겼다. ❌ 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..