html 에서 어떻게 동작하는지 모르면 아무리 코딩을 해도 가시적으로 확인을 할 수가 없어서 너무 답답했다. 그래서 결정했다 파보기로. 한번 파보자 어떤 놈인지.
html 은 서버에서 백쪽으로 정보를 전달 및 요청을 할 수 있는 창구로 보여진다.
<!--html의 가장 기본형태-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
URL 은 무한이 긴 데이터를 수용하지 않기 때문에 form 형식으로 보내줘야 큰 데이터도 무리없이 다룰 수 있다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--입력을 받을 경우, title - value 로
+ description - value 로
+ "post" 방식을 통해 => 등록 수정 삭제
"http://localhost:3000/process_create" 로 보내려고 한다.
-->
<form action="http://localhost:3000/process_create" method="post">
<p><input type="text" name="title">제목</p>
<p>
<textarea name="description">내용</textarea>
</p>
<p>
<input type="submit">
</p>
</form>
</body>
</html>