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 | 31 |
Tags
- avax.net.ssl.SSLHandshakeException:
- Law of Demeter
- 시스템 파악
- java.sql.SQLRecoverableException
- 변수명 짓는법
- SQLRecoverableException
- 명령어공부
- 에자일 모형
- 프로토타입 모형
- springboot
- 커맨드공부
- CSS
- pl/sql
- Bandit Level 6
- 폭포수 모형
- was버그
- 시스템 파악 정리
- table scan
- vue
- 인증서만료에러
- OpenAPI
- was SQLRecoverableException
- 디미터 법칙
- 스크럼기법
- plsql
- 클린코드
- mysql 튜닝
- Bandit Level 5
- 나선형 모형
- Bandit Level 6 → Level 7
Archives
- Today
- Total
개발햄비
[node.js] CRUD : create 기능 만들기 본문
const data \= new Uint8Array(Buffer.from('Hello Node.js')); fs.writeFile('message.txt', data, (err) \=> { if (err) throw err; console.log('The file has been saved!'); });
<a href="/create">create</a>
if (pathname === '/create') {
fs.readdir('./data',function( error,filelist){
var templat = makeInfo('Web - create',filelist,\`
<form action="/create\_process" method="post">
<p><input type="text" name ="tatle" placeholder="tatle"></p>
<p><textarea name="description" rows="8" cols="80" name ="description"
placeholder="description"> </textarea></p>
<p><input type="submit"></p>
</form>
\`);
// 200은 성공했다는 의미
response.writeHead(200);
response.end(templat);
})
}else if(pathname === '/create\_process') {
var body = '';
// requst data를 통해서 데이터가 들어와 body에 저장
request.on('data',function(data){
body += data;
});
// 그 후 end\`로 넘어와 post에 담아서 뽑아 쓸수 있다
request.on('end',function(){
// post에 body데이터가 저장됨
var post = qs.parse(body);
var tatle = post.tatle;
var description = post.description;
fs.writeFile(\`data/${tatle}\`,description,'utf8',
err => {
// 302 요청은 페이지를 다른 곳으로 리다이렉션 시키는 것
response.writeHead(302,{Location:\`/?id=${tatle}\`});
response.end();
})
});
}
'개발 > node.js' 카테고리의 다른 글
[node.js] module 사용법 (0) | 2019.08.31 |
---|---|
[node.js] CRUD : read 기능 만들기 (0) | 2019.08.31 |
[node.js] 페이스북 + node 챗봇 만들기 (4) | 2019.04.07 |
[node.js] node.js CRUD기능 예제 (0) | 2019.02.20 |
[node.js] 입력정보 보안 처리 (0) | 2019.02.02 |