Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sendFile
- CSS
- TypeScript #문법
- serializeUser
- mongodb 입출력
- connect-mongo
- 정적 페이지
- Promise #async #await #try #catch
- Passport
- __dirname
- typescript #unknown
- GitHub Actions
- typescript #import #export #*
- deserializeUser
- react#로스트아크#mbti#테스트
- updateone
- typescript #constructor #class #public #private
- e.target
- typescript #class #constructor #public #private #static #extends #protected #typeof #in #instanceof #never
- github#로컬저장소#원격저장소
- github#githubpages#gh-pages#deploy
- git vscode
- github#githubpages#빈화면#basename
- expess
- typescript #react #jsx #component #usestate
- typescript #class #extends #public #private #protected #static
- ejs 문법
- updatemany
- insertone
- git#github#init#add#commit#restore#log#staging area#repository#git사용법
Archives
- Today
- Total
목록insertone (1)
VaIice의 이야기
[Node.js] 글쓰기 만들기
1. 폼 만들기 form class="form-box" action="/add" method="POST"> h4>글쓰기h4> input type="text" name="title" required> input name="content" required> button type="submit">전송button> form> button을 누르면 /new 경로로 이동 후 POST 요청서버로 전달하고 싶으면 name="" 속성 열기 2. 유저 데이터 출력 // server.js app.use(express.json())app.use(express.urlencoded({extended:true})) 3..
[Node.js]
2024. 7. 11. 00:29