일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Bandit Level 6 → Level 7
- 클린코드
- 명령어공부
- 스크럼기법
- 시스템 파악
- 나선형 모형
- 에자일 모형
- 프로토타입 모형
- mysql 튜닝
- springboot
- was SQLRecoverableException
- 인증서만료에러
- 폭포수 모형
- pl/sql
- table scan
- Bandit Level 5
- 디미터 법칙
- OpenAPI
- Law of Demeter
- avax.net.ssl.SSLHandshakeException:
- was버그
- 시스템 파악 정리
- Bandit Level 6
- plsql
- CSS
- java.sql.SQLRecoverableException
- 커맨드공부
- vue
- 변수명 짓는법
- SQLRecoverableException
- Today
- Total
개발햄비
[node.js] CRUD : update 기능 만들기 본문
fs.rename('/tmp/hello', '/tmp/world', (err) => {
if (err) throw err;
console.log('renamed complete');
});
fs.stat('/tmp/world', (err, stats) => {
if (err) throw err;
console.log(`stats: ${JSON.stringify(stats)}`);
});
if (pathname === '/update'){
fs.readdir('./data',function( error, filelist){
fs.readFile(`data/${queryData.id}`,'utf8',function(err,description){
console.log(description);
var tatle = queryData.id;
var templat = makeInfo('Web - update',filelist,`
<form action="/update_process" method="post">
<p><input type="hidden" name ="id" value ="${tatle}"></p>
<p><input type="text" name ="tatle" placeholder="tatle" value ="${tatle}"></p>
<p><textarea name="description" rows="8" cols="80" name ="description"
placeholder="description"> ${description}</textarea></p>
<p><input type="submit"></p>
</form>
`,`<a href="/create">create</a> <a href="/update?id=${tatle}">update</a>`);
response.writeHead(200);
response.end(templat);
});
});
}else if (pathname === '/update_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 id = post.id;
var description = post.description;
fs.rename(`data/${id}`,`data/${tatle}`,(err) =>{
fs.writeFile(`data/${tatle}`,description,'utf8' err => {
// 302 요청은 페이지를 다른 곳으로 리다이렉션 시키는 것
response.writeHead(302,{Location:`/?id=${tatle}`});
response.end();
})
});
});
}
'개발 > node.js' 카테고리의 다른 글
[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 |
[node.js] CRUD : delete 기능 만들기 (0) | 2019.01.30 |